maspack.geometry.io
Enum MayaAsciiReader.LengthUnit

java.lang.Object
  extended by java.lang.Enum<MayaAsciiReader.LengthUnit>
      extended by maspack.geometry.io.MayaAsciiReader.LengthUnit
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MayaAsciiReader.LengthUnit>
Enclosing class:
MayaAsciiReader

public static enum MayaAsciiReader.LengthUnit
extends java.lang.Enum<MayaAsciiReader.LengthUnit>


Enum Constant Summary
CENTIMETER
           
FOOT
           
INCH
           
KILOMETER
           
METER
           
MILE
           
MILLIMETER
           
YARD
           
 
Method Summary
static MayaAsciiReader.LengthUnit detect(java.lang.String str)
           
 double getSI()
           
static MayaAsciiReader.LengthUnit valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MayaAsciiReader.LengthUnit[] 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

MILLIMETER

public static final MayaAsciiReader.LengthUnit MILLIMETER

CENTIMETER

public static final MayaAsciiReader.LengthUnit CENTIMETER

METER

public static final MayaAsciiReader.LengthUnit METER

KILOMETER

public static final MayaAsciiReader.LengthUnit KILOMETER

INCH

public static final MayaAsciiReader.LengthUnit INCH

FOOT

public static final MayaAsciiReader.LengthUnit FOOT

YARD

public static final MayaAsciiReader.LengthUnit YARD

MILE

public static final MayaAsciiReader.LengthUnit MILE
Method Detail

values

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

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

valueOf

public static MayaAsciiReader.LengthUnit 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

getSI

public double getSI()

detect

public static MayaAsciiReader.LengthUnit detect(java.lang.String str)