public enum Scalar extends Enum<Scalar>
Java class for Tscalar.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Tscalar"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="String"/> <enumeration value="Long"/> <enumeration value="Double"/> <enumeration value="Float"/> <enumeration value="Integer"/> <enumeration value="Byte"/> <enumeration value="Char"/> <enumeration value="Boolean"/> <enumeration value="Short"/> <enumeration value="Password"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
FLOAT |
INTEGER |
LONG |
PASSWORD |
SHORT |
STRING |
Modifier and Type | Method and Description |
---|---|
static Scalar |
fromValue(String v) |
String |
value() |
static Scalar |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scalar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scalar STRING
public static final Scalar LONG
public static final Scalar DOUBLE
public static final Scalar FLOAT
public static final Scalar INTEGER
public static final Scalar BYTE
public static final Scalar CHAR
public static final Scalar BOOLEAN
public static final Scalar SHORT
public static final Scalar PASSWORD
public static Scalar[] values()
for (Scalar c : Scalar.values()) System.out.println(c);
public static Scalar 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 © 2013. All Rights Reserved.