public enum BitVectorFactories extends Enum<BitVectorFactories> implements com.google.common.base.Function<Integer,BitVector>
| Enum Constant and Description |
|---|
LONG_ARRAY |
OPTIMAL |
SLOW |
| Modifier and Type | Method and Description |
|---|---|
static BitVectorFactories |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitVectorFactories[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitVectorFactories OPTIMAL
public static final BitVectorFactories SLOW
public static final BitVectorFactories LONG_ARRAY
public static BitVectorFactories[] values()
for (BitVectorFactories c : BitVectorFactories.values()) System.out.println(c);
public static BitVectorFactories 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 nullCopyright © 2014. All Rights Reserved.