public enum IdentifierSymbol extends Enum<IdentifierSymbol>
| Modifier and Type | Method and Description |
|---|---|
char |
getSymbol() |
static IdentifierSymbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentifierSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentifierSymbol COLON
public static final IdentifierSymbol AT_SIGN
public static IdentifierSymbol[] values()
for (IdentifierSymbol c : IdentifierSymbol.values()) System.out.println(c);
public static IdentifierSymbol 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 nullpublic char getSymbol()
Copyright © 2012–2023. All rights reserved.