public enum DecimalType extends java.lang.Enum<DecimalType>
| Enum Constant and Description | 
|---|
| FINITE | 
| INFINITY | 
| NAN | 
| SIGNALING_NAN | 
| Modifier and Type | Method and Description | 
|---|---|
| static DecimalType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static DecimalType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DecimalType FINITE
public static final DecimalType INFINITY
public static final DecimalType NAN
public static final DecimalType SIGNALING_NAN
public static DecimalType[] values()
for (DecimalType c : DecimalType.values()) System.out.println(c);
public static DecimalType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2025 Jaybird (Firebird JDBC) team. All rights reserved.