public static enum SSTableFormat.Type extends java.lang.Enum<SSTableFormat.Type>
| Modifier and Type | Field and Description | 
|---|---|
| SSTableFormat | info | 
| java.lang.String | name | 
| Modifier and Type | Method and Description | 
|---|---|
| static SSTableFormat.Type | current() | 
| static SSTableFormat.Type | validate(java.lang.String name) | 
| static SSTableFormat.Type | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SSTableFormat.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SSTableFormat.Type LEGACY
public static final SSTableFormat.Type BIG
public final SSTableFormat info
public final java.lang.String name
public static SSTableFormat.Type[] values()
for (SSTableFormat.Type c : SSTableFormat.Type.values()) System.out.println(c);
public static SSTableFormat.Type 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 SSTableFormat.Type current()
public static SSTableFormat.Type validate(java.lang.String name)
Copyright © 2018 The Apache Software Foundation