com.stimulsoft.base.enums
Enum StiArabicDigitsType

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

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

Enumeration for the representation of arabic digits.


Enum Constant Summary
Eastern
          A value for the Eastern arabic digits.
Standard
          A value for the standard arabic digits.
 
Method Summary
static StiArabicDigitsType forValue(int value)
           
 int getValue()
           
static StiArabicDigitsType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiArabicDigitsType[] 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

Standard

public static final StiArabicDigitsType Standard
A value for the standard arabic digits.


Eastern

public static final StiArabicDigitsType Eastern
A value for the Eastern arabic digits.

Method Detail

values

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

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

valueOf

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