Enum BaseTypeNode
- java.lang.Object
-
- java.lang.Enum<BaseTypeNode>
-
- proguard.classfile.attribute.signature.ast.descriptor.BaseTypeNode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseTypeNode>
public enum BaseTypeNode extends java.lang.Enum<BaseTypeNode>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,P>
Raccept(ASTNodeVisitor<R,P> visitor, P arg)booleanisCategory2()Return true if this base type corresponds to a category 2 value.static BaseTypeNodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BaseTypeNode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
B
public static final BaseTypeNode B
-
C
public static final BaseTypeNode C
-
D
public static final BaseTypeNode D
-
F
public static final BaseTypeNode F
-
I
public static final BaseTypeNode I
-
J
public static final BaseTypeNode J
-
S
public static final BaseTypeNode S
-
Z
public static final BaseTypeNode Z
-
-
Method Detail
-
values
public static BaseTypeNode[] 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 (BaseTypeNode c : BaseTypeNode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseTypeNode 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
-
isCategory2
public boolean isCategory2()
Return true if this base type corresponds to a category 2 value.
-
accept
public <R,P> R accept(ASTNodeVisitor<R,P> visitor, P arg)
-
-