com.sun.xml.ws.policy.jaxws.xmlstreamwriter
Enum XmlStreamWriterMethodType

java.lang.Object
  extended by java.lang.Enum<XmlStreamWriterMethodType>
      extended by com.sun.xml.ws.policy.jaxws.xmlstreamwriter.XmlStreamWriterMethodType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<XmlStreamWriterMethodType>

public enum XmlStreamWriterMethodType
extends java.lang.Enum<XmlStreamWriterMethodType>


Enum Constant Summary
CLOSE
           
FLUSH
           
GET_NAMESPACE_CONTEXT
           
GET_PREFIX
           
GET_PROPERTY
           
SET_DEFAULT_NAMESPACE
           
SET_NAMESPACE_CONTEXT
           
SET_PREFIX
           
UNKNOWN
           
WRITE_ATTRIBUTE
           
WRITE_CDATA
           
WRITE_CHARACTERS
           
WRITE_COMMENT
           
WRITE_DEFAULT_NAMESPACE
           
WRITE_DTD
           
WRITE_EMPTY_ELEMENT
           
WRITE_END_DOCUMENT
           
WRITE_END_ELEMENT
           
WRITE_ENTITY_REFERENCE
           
WRITE_NAMESPACE
           
WRITE_PROCESSING_INSTRUCTION
           
WRITE_START_DOCUMENT
           
WRITE_START_ELEMENT
           
 
Method Summary
 java.lang.String getMethodName()
           
 boolean isFilterable()
           
static XmlStreamWriterMethodType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XmlStreamWriterMethodType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WRITE_START_DOCUMENT

public static final XmlStreamWriterMethodType WRITE_START_DOCUMENT

WRITE_END_DOCUMENT

public static final XmlStreamWriterMethodType WRITE_END_DOCUMENT

WRITE_START_ELEMENT

public static final XmlStreamWriterMethodType WRITE_START_ELEMENT

WRITE_END_ELEMENT

public static final XmlStreamWriterMethodType WRITE_END_ELEMENT

WRITE_EMPTY_ELEMENT

public static final XmlStreamWriterMethodType WRITE_EMPTY_ELEMENT

WRITE_ATTRIBUTE

public static final XmlStreamWriterMethodType WRITE_ATTRIBUTE

WRITE_CHARACTERS

public static final XmlStreamWriterMethodType WRITE_CHARACTERS

WRITE_PROCESSING_INSTRUCTION

public static final XmlStreamWriterMethodType WRITE_PROCESSING_INSTRUCTION

WRITE_ENTITY_REFERENCE

public static final XmlStreamWriterMethodType WRITE_ENTITY_REFERENCE

WRITE_CDATA

public static final XmlStreamWriterMethodType WRITE_CDATA

WRITE_COMMENT

public static final XmlStreamWriterMethodType WRITE_COMMENT

WRITE_DTD

public static final XmlStreamWriterMethodType WRITE_DTD

WRITE_DEFAULT_NAMESPACE

public static final XmlStreamWriterMethodType WRITE_DEFAULT_NAMESPACE

WRITE_NAMESPACE

public static final XmlStreamWriterMethodType WRITE_NAMESPACE

GET_NAMESPACE_CONTEXT

public static final XmlStreamWriterMethodType GET_NAMESPACE_CONTEXT

GET_PREFIX

public static final XmlStreamWriterMethodType GET_PREFIX

GET_PROPERTY

public static final XmlStreamWriterMethodType GET_PROPERTY

SET_DEFAULT_NAMESPACE

public static final XmlStreamWriterMethodType SET_DEFAULT_NAMESPACE

SET_NAMESPACE_CONTEXT

public static final XmlStreamWriterMethodType SET_NAMESPACE_CONTEXT

SET_PREFIX

public static final XmlStreamWriterMethodType SET_PREFIX

CLOSE

public static final XmlStreamWriterMethodType CLOSE

FLUSH

public static final XmlStreamWriterMethodType FLUSH

UNKNOWN

public static final XmlStreamWriterMethodType UNKNOWN
Method Detail

values

public static final XmlStreamWriterMethodType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(XmlStreamWriterMethodType c : XmlStreamWriterMethodType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static XmlStreamWriterMethodType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getMethodName

public java.lang.String getMethodName()

isFilterable

public boolean isFilterable()