Package ghidra.pcode.floatformat
Enum Floatclass
- java.lang.Object
-
- java.lang.Enum<Floatclass>
-
- ghidra.pcode.floatformat.Floatclass
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Floatclass>
public enum Floatclass extends java.lang.Enum<Floatclass>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description denormalized
infinity
nan
normalized
zero
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Floatclass
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Floatclass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
normalized
public static final Floatclass normalized
-
infinity
public static final Floatclass infinity
-
zero
public static final Floatclass zero
-
nan
public static final Floatclass nan
-
denormalized
public static final Floatclass denormalized
-
-
Method Detail
-
values
public static Floatclass[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Floatclass c : Floatclass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Floatclass valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-