public static enum SwiftParser.Entity extends Enum<SwiftParser.Entity>
| Enum Constant and Description |
|---|
CODEPOINT |
CODEPOINT_DEC |
CODEPOINT_HEX |
NAMED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static SwiftParser.Entity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SwiftParser.Entity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwiftParser.Entity NAMED
public static final SwiftParser.Entity CODEPOINT
public static final SwiftParser.Entity CODEPOINT_DEC
public static final SwiftParser.Entity CODEPOINT_HEX
public static final SwiftParser.Entity UNKNOWN
public static SwiftParser.Entity[] values()
for (SwiftParser.Entity c : SwiftParser.Entity.values()) System.out.println(c);
public static SwiftParser.Entity 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.