public enum ArrayFactoryStrategy extends Enum<ArrayFactoryStrategy>
Enum Constant and Description |
---|
DYNAMIC |
JAVA_2D_ARRAYS |
JAVA_ARRAYS |
OFF_HEAP_ARRAYS |
Modifier and Type | Method and Description |
---|---|
String |
toKey() |
String |
toString() |
static ArrayFactoryStrategy |
valueOf(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_2D_ARRAYS
public static final ArrayFactoryStrategy JAVA_ARRAYS
public static final ArrayFactoryStrategy OFF_HEAP_ARRAYS
public String toKey()
public String toString()
toString
in class Enum<ArrayFactoryStrategy>
public static ArrayFactoryStrategy 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 static ArrayFactoryStrategy[] values()
for (ArrayFactoryStrategy c : ArrayFactoryStrategy.values()) System.out.println(c);
Copyright © 2015. All rights reserved.