public enum TFloating extends Enum<TFloating>
Java class for TFloating.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TFloating">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="floating"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FLOATING |
| Modifier and Type | Method and Description |
|---|---|
static TFloating |
fromValue(String v) |
String |
value() |
static TFloating |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TFloating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TFloating FLOATING
public static TFloating[] values()
for (TFloating c : TFloating.values()) System.out.println(c);
public static TFloating 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()
Copyright © 2018–2020. All rights reserved.