public enum TorqueUnitEnumType extends Enum<TorqueUnitEnumType>
Java class for TorqueUnitEnumType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TorqueUnitEnumType">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="newtonMeter"/>
<enumeration value="footPound"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FOOT_POUND |
NEWTON_METER |
| Modifier and Type | Method and Description |
|---|---|
static TorqueUnitEnumType |
fromValue(String v) |
String |
value() |
static TorqueUnitEnumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TorqueUnitEnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TorqueUnitEnumType NEWTON_METER
public static final TorqueUnitEnumType FOOT_POUND
public static TorqueUnitEnumType[] values()
for (TorqueUnitEnumType c : TorqueUnitEnumType.values()) System.out.println(c);
public static TorqueUnitEnumType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static TorqueUnitEnumType fromValue(String v)
Copyright © 2016. All rights reserved.