public enum ArrayFactoryStrategy extends java.lang.Enum<ArrayFactoryStrategy>
| Enum Constant and Description |
|---|
DYNAMIC |
JAVA_ARRAYS |
OFF_HEAP_ARRAYS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toKey() |
java.lang.String |
toString() |
static ArrayFactoryStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrayFactoryStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ArrayFactoryStrategy DYNAMIC
public static final ArrayFactoryStrategy JAVA_ARRAYS
public static final ArrayFactoryStrategy OFF_HEAP_ARRAYS
public java.lang.String toKey()
public java.lang.String toString()
toString in class java.lang.Enum<ArrayFactoryStrategy>public static ArrayFactoryStrategy 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 ArrayFactoryStrategy[] values()
for (ArrayFactoryStrategy c : ArrayFactoryStrategy.values())
System.out.println(c);
Copyright © 2016 Oracle Corp. All Rights Reserved.