net.floodlightcontroller.storage.nosql
Enum NoSqlStorageSource.ColumnIndexMode
java.lang.Object
java.lang.Enum<NoSqlStorageSource.ColumnIndexMode>
net.floodlightcontroller.storage.nosql.NoSqlStorageSource.ColumnIndexMode
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<NoSqlStorageSource.ColumnIndexMode>
- Enclosing class:
- NoSqlStorageSource
public static enum NoSqlStorageSource.ColumnIndexMode
- extends java.lang.Enum<NoSqlStorageSource.ColumnIndexMode>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
NOT_INDEXED
public static final NoSqlStorageSource.ColumnIndexMode NOT_INDEXED
RANGE_INDEXED
public static final NoSqlStorageSource.ColumnIndexMode RANGE_INDEXED
EQUALITY_INDEXED
public static final NoSqlStorageSource.ColumnIndexMode EQUALITY_INDEXED
values
public static NoSqlStorageSource.ColumnIndexMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (NoSqlStorageSource.ColumnIndexMode c : NoSqlStorageSource.ColumnIndexMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static NoSqlStorageSource.ColumnIndexMode valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null