Enum TextWithControls.CodeCompletionType
- java.lang.Object
-
- java.lang.Enum<TextWithControls.CodeCompletionType>
-
- org.jrd.frontend.frame.main.decompilerview.TextWithControls.CodeCompletionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TextWithControls.CodeCompletionType>
- Enclosing class:
- TextWithControls
public static enum TextWithControls.CodeCompletionType extends java.lang.Enum<TextWithControls.CodeCompletionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORBIDDEN
JRD
STANDALONE
-
Constructor Summary
Constructors Modifier Constructor Description private
CodeCompletionType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TextWithControls.CodeCompletionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TextWithControls.CodeCompletionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORBIDDEN
public static final TextWithControls.CodeCompletionType FORBIDDEN
-
JRD
public static final TextWithControls.CodeCompletionType JRD
-
STANDALONE
public static final TextWithControls.CodeCompletionType STANDALONE
-
-
Method Detail
-
values
public static TextWithControls.CodeCompletionType[] 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 (TextWithControls.CodeCompletionType c : TextWithControls.CodeCompletionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextWithControls.CodeCompletionType 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
-
-