net.sf.sevenzipjbinding
Enum NCoderPropID

java.lang.Object
  extended by java.lang.Enum<NCoderPropID>
      extended by net.sf.sevenzipjbinding.NCoderPropID
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NCoderPropID>

public enum NCoderPropID
extends java.lang.Enum<NCoderPropID>

Enumeration for possible NCoder properties TODO Use it or remove it

Since:
9.20-2.00
Author:
Boris Brodski

Enum Constant Summary
kAlgorithm
           
kBlockSize
           
kDefaultProp
           
kDictionarySize
           
kEndMarker
           
kLitContextBits
           
kLitPosBits
           
kMatchFinder
           
kMatchFinderCycles
           
kNumFastBytes
           
kNumPasses
           
kNumThreads
           
kOrder
           
kPosStateBits
           
kUsedMemorySize
           
 
Method Summary
static NCoderPropID valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NCoderPropID[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

kBlockSize

public static final NCoderPropID kBlockSize

kDictionarySize

public static final NCoderPropID kDictionarySize

kUsedMemorySize

public static final NCoderPropID kUsedMemorySize

kOrder

public static final NCoderPropID kOrder

kPosStateBits

public static final NCoderPropID kPosStateBits

kLitContextBits

public static final NCoderPropID kLitContextBits

kLitPosBits

public static final NCoderPropID kLitPosBits

kEndMarker

public static final NCoderPropID kEndMarker

kNumPasses

public static final NCoderPropID kNumPasses

kNumFastBytes

public static final NCoderPropID kNumFastBytes

kMatchFinderCycles

public static final NCoderPropID kMatchFinderCycles

kAlgorithm

public static final NCoderPropID kAlgorithm

kMatchFinder

public static final NCoderPropID kMatchFinder

kNumThreads

public static final NCoderPropID kNumThreads

kDefaultProp

public static final NCoderPropID kDefaultProp
Method Detail

values

public static final NCoderPropID[] 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(NCoderPropID c : NCoderPropID.values())
        System.out.println(c);

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

valueOf

public static NCoderPropID 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