public enum OutputEnterChar extends java.lang.Enum<OutputEnterChar>
Enum Constant and Description |
---|
Comma |
None |
NotSupport |
Return |
Semicolon |
Space |
Tab |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
int |
value() |
static OutputEnterChar |
valueOf(int value) |
static OutputEnterChar |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputEnterChar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputEnterChar None
public static final OutputEnterChar Return
public static final OutputEnterChar Tab
public static final OutputEnterChar Space
public static final OutputEnterChar Comma
public static final OutputEnterChar Semicolon
public static final OutputEnterChar NotSupport
public static OutputEnterChar[] values()
for (OutputEnterChar c : OutputEnterChar.values()) System.out.println(c);
public static OutputEnterChar 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 int getValue()
public static OutputEnterChar valueOf(int value)
public int value()