public enum CAST_INTEGER extends Enum<CAST_INTEGER>
| Modifier and Type | Method and Description |
|---|---|
static CAST_INTEGER |
byName(String name) |
String |
getName() |
Integer |
getScaledValue(Double toScale) |
static CAST_INTEGER |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CAST_INTEGER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CAST_INTEGER ROUND
public static final CAST_INTEGER CEILING
public static final CAST_INTEGER FLOOR
public static CAST_INTEGER[] values()
for (CAST_INTEGER c : CAST_INTEGER.values()) System.out.println(c);
public static CAST_INTEGER 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 static CAST_INTEGER byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.