Enum MethodPrototype.HiddenReason
- java.lang.Object
-
- java.lang.Enum<MethodPrototype.HiddenReason>
-
- org.benf.cfr.reader.bytecode.analysis.types.MethodPrototype.HiddenReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MethodPrototype.HiddenReason>
- Enclosing class:
- MethodPrototype
public static enum MethodPrototype.HiddenReason extends java.lang.Enum<MethodPrototype.HiddenReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HiddenCapture
HiddenOuterReference
NotHidden
-
Constructor Summary
Constructors Modifier Constructor Description private
HiddenReason()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodPrototype.HiddenReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MethodPrototype.HiddenReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NotHidden
public static final MethodPrototype.HiddenReason NotHidden
-
HiddenOuterReference
public static final MethodPrototype.HiddenReason HiddenOuterReference
-
HiddenCapture
public static final MethodPrototype.HiddenReason HiddenCapture
-
-
Method Detail
-
values
public static MethodPrototype.HiddenReason[] 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 (MethodPrototype.HiddenReason c : MethodPrototype.HiddenReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MethodPrototype.HiddenReason 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
-
-