Package jadx.core.dex.instructions.args
Enum ArgType.WildcardBound
- java.lang.Object
-
- java.lang.Enum<ArgType.WildcardBound>
-
- jadx.core.dex.instructions.args.ArgType.WildcardBound
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ArgType.WildcardBound>
- Enclosing class:
- ArgType
public static enum ArgType.WildcardBound extends java.lang.Enum<ArgType.WildcardBound>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ArgType.WildcardBoundgetByNum(int num)intgetNum()java.lang.StringgetStr()static ArgType.WildcardBoundvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ArgType.WildcardBound[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTENDS
public static final ArgType.WildcardBound EXTENDS
-
UNBOUND
public static final ArgType.WildcardBound UNBOUND
-
SUPER
public static final ArgType.WildcardBound SUPER
-
-
Method Detail
-
values
public static ArgType.WildcardBound[] 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 (ArgType.WildcardBound c : ArgType.WildcardBound.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArgType.WildcardBound 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
-
getNum
public int getNum()
-
getStr
public java.lang.String getStr()
-
getByNum
public static ArgType.WildcardBound getByNum(int num)
-
-