Package proguard.dexfile.reader
Enum InstructionFormat
- java.lang.Object
-
- java.lang.Enum<InstructionFormat>
-
- proguard.dexfile.reader.InstructionFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InstructionFormat>
public enum InstructionFormat extends java.lang.Enum<InstructionFormat>
-
-
Field Summary
Fields Modifier and Type Field Description int
size
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InstructionFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InstructionFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
kFmt10x
public static final InstructionFormat kFmt10x
-
kFmt12x
public static final InstructionFormat kFmt12x
-
kFmt11n
public static final InstructionFormat kFmt11n
-
kFmt11x
public static final InstructionFormat kFmt11x
-
kFmt10t
public static final InstructionFormat kFmt10t
-
kFmt20t
public static final InstructionFormat kFmt20t
-
kFmt22x
public static final InstructionFormat kFmt22x
-
kFmt21t
public static final InstructionFormat kFmt21t
-
kFmt21s
public static final InstructionFormat kFmt21s
-
kFmt21h
public static final InstructionFormat kFmt21h
-
kFmt21c
public static final InstructionFormat kFmt21c
-
kFmt23x
public static final InstructionFormat kFmt23x
-
kFmt22b
public static final InstructionFormat kFmt22b
-
kFmt22t
public static final InstructionFormat kFmt22t
-
kFmt22s
public static final InstructionFormat kFmt22s
-
kFmt22c
public static final InstructionFormat kFmt22c
-
kFmt30t
public static final InstructionFormat kFmt30t
-
kFmt32x
public static final InstructionFormat kFmt32x
-
kFmt31i
public static final InstructionFormat kFmt31i
-
kFmt31t
public static final InstructionFormat kFmt31t
-
kFmt31c
public static final InstructionFormat kFmt31c
-
kFmt35c
public static final InstructionFormat kFmt35c
-
kFmt3rc
public static final InstructionFormat kFmt3rc
-
kFmt45cc
public static final InstructionFormat kFmt45cc
-
kFmt4rcc
public static final InstructionFormat kFmt4rcc
-
kFmt51l
public static final InstructionFormat kFmt51l
-
-
Method Detail
-
values
public static InstructionFormat[] 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 (InstructionFormat c : InstructionFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstructionFormat 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
-
-