com.stimulsoft.report.barCodes.enums
Enum StiPdf417EncodingMode

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

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


Enum Constant Summary
Byte
           
Numeric
           
Text
           
 
Method Summary
static StiPdf417EncodingMode forValue(int value)
           
 int getValue()
           
static StiPdf417EncodingMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiPdf417EncodingMode[] 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

Text

public static final StiPdf417EncodingMode Text

Numeric

public static final StiPdf417EncodingMode Numeric

Byte

public static final StiPdf417EncodingMode Byte
Method Detail

values

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

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

valueOf

public static StiPdf417EncodingMode 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 StiPdf417EncodingMode forValue(int value)