Package net.jpountz.lz4
Enum LZ4FrameOutputStream.FLG.Bits
- java.lang.Object
-
- java.lang.Enum<LZ4FrameOutputStream.FLG.Bits>
-
- net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LZ4FrameOutputStream.FLG.Bits>
- Enclosing class:
- LZ4FrameOutputStream.FLG
public static enum LZ4FrameOutputStream.FLG.Bits extends java.lang.Enum<LZ4FrameOutputStream.FLG.Bits>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCK_CHECKSUM
BLOCK_INDEPENDENCE
CONTENT_CHECKSUM
CONTENT_SIZE
RESERVED_0
RESERVED_1
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LZ4FrameOutputStream.FLG.Bits
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LZ4FrameOutputStream.FLG.Bits[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESERVED_0
public static final LZ4FrameOutputStream.FLG.Bits RESERVED_0
-
RESERVED_1
public static final LZ4FrameOutputStream.FLG.Bits RESERVED_1
-
CONTENT_CHECKSUM
public static final LZ4FrameOutputStream.FLG.Bits CONTENT_CHECKSUM
-
CONTENT_SIZE
public static final LZ4FrameOutputStream.FLG.Bits CONTENT_SIZE
-
BLOCK_CHECKSUM
public static final LZ4FrameOutputStream.FLG.Bits BLOCK_CHECKSUM
-
BLOCK_INDEPENDENCE
public static final LZ4FrameOutputStream.FLG.Bits BLOCK_INDEPENDENCE
-
-
Method Detail
-
values
public static LZ4FrameOutputStream.FLG.Bits[] 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 (LZ4FrameOutputStream.FLG.Bits c : LZ4FrameOutputStream.FLG.Bits.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LZ4FrameOutputStream.FLG.Bits 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
-
-