org.apache.hadoop.io.compress.lzo
Enum LzoDecompressor.CompressionStrategy

java.lang.Object
  extended by java.lang.Enum<LzoDecompressor.CompressionStrategy>
      extended by org.apache.hadoop.io.compress.lzo.LzoDecompressor.CompressionStrategy
All Implemented Interfaces:
Serializable, Comparable<LzoDecompressor.CompressionStrategy>
Enclosing class:
LzoDecompressor

public static enum LzoDecompressor.CompressionStrategy
extends Enum<LzoDecompressor.CompressionStrategy>


Enum Constant Summary
LZO1
          lzo1 algorithms.
LZO1A
          lzo1a algorithms.
LZO1B
          lzo1b algorithms.
LZO1B_SAFE
           
LZO1C
          lzo1c algorithms.
LZO1C_ASM
           
LZO1C_ASM_SAFE
           
LZO1C_SAFE
           
LZO1F
          lzo1f algorithms.
LZO1F_ASM_FAST
           
LZO1F_ASM_FAST_SAFE
           
LZO1F_SAFE
           
LZO1X
          lzo1x algorithms.
LZO1X_ASM
           
LZO1X_ASM_FAST
           
LZO1X_ASM_FAST_SAFE
           
LZO1X_ASM_SAFE
           
LZO1X_SAFE
           
LZO1Y
          lzo1y algorithms.
LZO1Y_ASM
           
LZO1Y_ASM_FAST
           
LZO1Y_ASM_FAST_SAFE
           
LZO1Y_ASM_SAFE
           
LZO1Y_SAFE
           
LZO1Z
          lzo1z algorithms.
LZO1Z_SAFE
           
LZO2A
          lzo2a algorithms.
LZO2A_SAFE
           
 
Method Summary
static LzoDecompressor.CompressionStrategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LzoDecompressor.CompressionStrategy[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LZO1

public static final LzoDecompressor.CompressionStrategy LZO1
lzo1 algorithms.


LZO1A

public static final LzoDecompressor.CompressionStrategy LZO1A
lzo1a algorithms.


LZO1B

public static final LzoDecompressor.CompressionStrategy LZO1B
lzo1b algorithms.


LZO1B_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1B_SAFE

LZO1C

public static final LzoDecompressor.CompressionStrategy LZO1C
lzo1c algorithms.


LZO1C_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1C_SAFE

LZO1C_ASM

public static final LzoDecompressor.CompressionStrategy LZO1C_ASM

LZO1C_ASM_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1C_ASM_SAFE

LZO1F

public static final LzoDecompressor.CompressionStrategy LZO1F
lzo1f algorithms.


LZO1F_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1F_SAFE

LZO1F_ASM_FAST

public static final LzoDecompressor.CompressionStrategy LZO1F_ASM_FAST

LZO1F_ASM_FAST_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1F_ASM_FAST_SAFE

LZO1X

public static final LzoDecompressor.CompressionStrategy LZO1X
lzo1x algorithms.


LZO1X_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1X_SAFE

LZO1X_ASM

public static final LzoDecompressor.CompressionStrategy LZO1X_ASM

LZO1X_ASM_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1X_ASM_SAFE

LZO1X_ASM_FAST

public static final LzoDecompressor.CompressionStrategy LZO1X_ASM_FAST

LZO1X_ASM_FAST_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1X_ASM_FAST_SAFE

LZO1Y

public static final LzoDecompressor.CompressionStrategy LZO1Y
lzo1y algorithms.


LZO1Y_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1Y_SAFE

LZO1Y_ASM

public static final LzoDecompressor.CompressionStrategy LZO1Y_ASM

LZO1Y_ASM_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1Y_ASM_SAFE

LZO1Y_ASM_FAST

public static final LzoDecompressor.CompressionStrategy LZO1Y_ASM_FAST

LZO1Y_ASM_FAST_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1Y_ASM_FAST_SAFE

LZO1Z

public static final LzoDecompressor.CompressionStrategy LZO1Z
lzo1z algorithms.


LZO1Z_SAFE

public static final LzoDecompressor.CompressionStrategy LZO1Z_SAFE

LZO2A

public static final LzoDecompressor.CompressionStrategy LZO2A
lzo2a algorithms.


LZO2A_SAFE

public static final LzoDecompressor.CompressionStrategy LZO2A_SAFE
Method Detail

values

public static final LzoDecompressor.CompressionStrategy[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(LzoDecompressor.CompressionStrategy c : LzoDecompressor.CompressionStrategy.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static LzoDecompressor.CompressionStrategy valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2008 The Apache Software Foundation