public static enum DfaBinOpValue.BinOp extends java.lang.Enum<DfaBinOpValue.BinOp>
Modifier and Type | Method and Description |
---|---|
static DfaBinOpValue.BinOp |
fromTokenType(IElementType tokenType) |
java.lang.String |
toString() |
static DfaBinOpValue.BinOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DfaBinOpValue.BinOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DfaBinOpValue.BinOp PLUS
public static final DfaBinOpValue.BinOp MINUS
public static final DfaBinOpValue.BinOp REM
public static DfaBinOpValue.BinOp[] values()
for (DfaBinOpValue.BinOp c : DfaBinOpValue.BinOp.values()) System.out.println(c);
public static DfaBinOpValue.BinOp valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DfaBinOpValue.BinOp fromTokenType(IElementType tokenType)
public java.lang.String toString()
toString
in class java.lang.Enum<DfaBinOpValue.BinOp>