org.spase.parser134
Enum EnumScaleType

java.lang.Object
  extended by java.lang.Enum<EnumScaleType>
      extended by org.spase.parser134.EnumScaleType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumScaleType>

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

Java class for enumScaleType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="enumScaleType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="LinearScale"/>
     <enumeration value="LogScale"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
LINEAR_SCALE
          Intervals which are equally spaced.
LOG_SCALE
          Intervals which are spaced proportionally to the logarithms of the values being represented.
 
Method Summary
static EnumScaleType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumScaleType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumScaleType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LINEAR_SCALE

public static final EnumScaleType LINEAR_SCALE
Intervals which are equally spaced.


LOG_SCALE

public static final EnumScaleType LOG_SCALE
Intervals which are spaced proportionally to the logarithms of the values being represented.

Method Detail

values

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

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

valueOf

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

value

public java.lang.String value()

fromValue

public static EnumScaleType fromValue(java.lang.String v)