|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SAXEventKindEnum> sk.uniba.euromath.tools.xml.sax.SAXEventKindEnum
public enum SAXEventKindEnum
Enumerates kinds of SAX events.
Method Summary | |
---|---|
static SAXEventKindEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SAXEventKindEnum[] |
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 |
---|
public static final SAXEventKindEnum DOCUMENT
ContentHandler.startDocument()
and
ContentHandler.endDocument()
calls.
public static final SAXEventKindEnum TEXT
ContentHandler.characters(char[], int, int)
,
ContentHandler.ignorableWhitespace(char[], int, int)
calls.
public static final SAXEventKindEnum ELEMENTS
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
,
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
calls.
public static final SAXEventKindEnum ATTRIBUTES
public static final SAXEventKindEnum PREFIX_MAPPINGS
ContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
,
ContentHandler.endPrefixMapping(java.lang.String)
calls.
public static final SAXEventKindEnum PROCESSING_INSTRUCTION
ContentHandler.processingInstruction(java.lang.String, java.lang.String)
call.
public static final SAXEventKindEnum SKIPPED_ENTITY
ContentHandler.skippedEntity(java.lang.String)
call.
Method Detail |
---|
public static final SAXEventKindEnum[] values()
for(SAXEventKindEnum c : SAXEventKindEnum.values()) System.out.println(c);
public static SAXEventKindEnum valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |