Package com.mapr.fs.hbase
Enum SchemaHelper.Compression
- java.lang.Object
-
- java.lang.Enum<SchemaHelper.Compression>
-
- com.mapr.fs.hbase.SchemaHelper.Compression
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SchemaHelper.Compression>
- Enclosing class:
- SchemaHelper
public static enum SchemaHelper.Compression extends java.lang.Enum<SchemaHelper.Compression>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaHelper.CompressionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SchemaHelper.Compression[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LZF
public static final SchemaHelper.Compression LZF
-
LZO
public static final SchemaHelper.Compression LZO
-
LZ4
public static final SchemaHelper.Compression LZ4
-
ZLIB
public static final SchemaHelper.Compression ZLIB
-
GZ
public static final SchemaHelper.Compression GZ
-
OFF
public static final SchemaHelper.Compression OFF
-
NONE
public static final SchemaHelper.Compression NONE
-
-
Method Detail
-
values
public static SchemaHelper.Compression[] 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 (SchemaHelper.Compression c : SchemaHelper.Compression.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchemaHelper.Compression 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 namejava.lang.NullPointerException- if the argument is null
-
-