public static enum SwiftParser.ParsingStage extends Enum<SwiftParser.ParsingStage>
| Enum Constant and Description |
|---|
CLOSE_ELEMENT |
ELEMENT_TEXT |
END_ATTR_NAME |
END_CDATA |
END_ELEMENT_NAME |
END_OF_ROOT |
ENTITY |
ERROR |
OPEN_BRACKET |
OTHER_XML |
START |
START_ATTR_NAME |
START_ATTR_VALUE_DQ |
START_ATTR_VALUE_SQ |
START_CDATA |
START_CDATA_CONTENT |
START_ELEMENT_NAME |
| Modifier and Type | Method and Description |
|---|---|
static SwiftParser.ParsingStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SwiftParser.ParsingStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwiftParser.ParsingStage START
public static final SwiftParser.ParsingStage OPEN_BRACKET
public static final SwiftParser.ParsingStage START_ELEMENT_NAME
public static final SwiftParser.ParsingStage END_ELEMENT_NAME
public static final SwiftParser.ParsingStage START_ATTR_NAME
public static final SwiftParser.ParsingStage END_ATTR_NAME
public static final SwiftParser.ParsingStage START_ATTR_VALUE_SQ
public static final SwiftParser.ParsingStage START_ATTR_VALUE_DQ
public static final SwiftParser.ParsingStage ELEMENT_TEXT
public static final SwiftParser.ParsingStage START_CDATA
public static final SwiftParser.ParsingStage START_CDATA_CONTENT
public static final SwiftParser.ParsingStage END_CDATA
public static final SwiftParser.ParsingStage OTHER_XML
public static final SwiftParser.ParsingStage CLOSE_ELEMENT
public static final SwiftParser.ParsingStage ENTITY
public static final SwiftParser.ParsingStage END_OF_ROOT
public static final SwiftParser.ParsingStage ERROR
public static SwiftParser.ParsingStage[] values()
for (SwiftParser.ParsingStage c : SwiftParser.ParsingStage.values()) System.out.println(c);
public static SwiftParser.ParsingStage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.