com.stimulsoft.report.barCodes.enums
Enum StiCode11CheckSum

java.lang.Object
  extended by java.lang.Enum<StiCode11CheckSum>
      extended by com.stimulsoft.report.barCodes.enums.StiCode11CheckSum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiCode11CheckSum>

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


Enum Constant Summary
Auto
           
None
           
OneDigit
           
TwoDigits
           
 
Method Summary
static StiCode11CheckSum forValue(int value)
           
 int getValue()
           
static StiCode11CheckSum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiCode11CheckSum[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

None

public static final StiCode11CheckSum None

OneDigit

public static final StiCode11CheckSum OneDigit

TwoDigits

public static final StiCode11CheckSum TwoDigits

Auto

public static final StiCode11CheckSum Auto
Method Detail

values

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

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

valueOf

public static StiCode11CheckSum 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
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()

forValue

public static StiCode11CheckSum forValue(int value)