public enum OutputEnterWay extends java.lang.Enum<OutputEnterWay>
Enum Constant and Description |
---|
Disable |
NotSupport |
PreffixData |
SuffixData |
Modifier and Type | Method and Description |
---|---|
static OutputEnterWay |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputEnterWay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputEnterWay Disable
public static final OutputEnterWay SuffixData
public static final OutputEnterWay PreffixData
public static final OutputEnterWay NotSupport
public static OutputEnterWay[] values()
for (OutputEnterWay c : OutputEnterWay.values()) System.out.println(c);
public static OutputEnterWay 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 null