Package org.openjdk.asmtools.jdis
Enum Options.PR
- java.lang.Object
-
- java.lang.Enum<Options.PR>
-
- org.openjdk.asmtools.jdis.Options.PR
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Options.PR>
- Enclosing class:
- Options
public static enum Options.PR extends java.lang.Enum<Options.PR>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PR()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Options.PR
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Options.PR[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CP
public static final Options.PR CP
-
LNT
public static final Options.PR LNT
-
PC
public static final Options.PR PC
-
LABS
public static final Options.PR LABS
-
CPX
public static final Options.PR CPX
-
SRC
public static final Options.PR SRC
-
HEX
public static final Options.PR HEX
-
VAR
public static final Options.PR VAR
-
DEBUG
public static final Options.PR DEBUG
-
-
Method Detail
-
values
public static Options.PR[] 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 (Options.PR c : Options.PR.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Options.PR 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
-
-