public static enum StringInputStream.Mode extends java.lang.Enum<StringInputStream.Mode>
| Enum Constant and Description |
|---|
ALL
Both lower and higher byte of string characters are processed.
|
ASCII
Returns only low bytes, marking overloaded chars with 0x3F.
|
STRIP
High bytes are simply cut off.
|
| Modifier and Type | Method and Description |
|---|---|
static StringInputStream.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringInputStream.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringInputStream.Mode ALL
public static final StringInputStream.Mode STRIP
public static final StringInputStream.Mode ASCII
public static StringInputStream.Mode[] values()
for (StringInputStream.Mode c : StringInputStream.Mode.values()) System.out.println(c);
public static StringInputStream.Mode 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 nullCopyright © 2003-2013 Jodd Team