protected static enum FastStringUtils.StringImplementation extends Enum<FastStringUtils.StringImplementation>
| Enum Constant and Description | 
|---|
DIRECT_CHARS
JDK 7 drops offset and count so there is special handling for later version of JDK 7. 
 | 
OFFSET
JDK 4 and JDK 5 have offset and count fields. 
 | 
UNKNOWN  | 
| Modifier and Type | Method and Description | 
|---|---|
abstract String | 
noCopyStringFromChars(char[] chars)  | 
abstract char[] | 
toCharArray(String string)  | 
static FastStringUtils.StringImplementation | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FastStringUtils.StringImplementation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FastStringUtils.StringImplementation DIRECT_CHARS
public static final FastStringUtils.StringImplementation OFFSET
public static final FastStringUtils.StringImplementation UNKNOWN
public static FastStringUtils.StringImplementation[] values()
for (FastStringUtils.StringImplementation c : FastStringUtils.StringImplementation.values()) System.out.println(c);
public static FastStringUtils.StringImplementation 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 abstract char[] toCharArray(String string)
public abstract String noCopyStringFromChars(char[] chars)