Package org.jf.dexlib2
Enum Format
- java.lang.Object
-
- java.lang.Enum<Format>
-
- org.jf.dexlib2.Format
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description boolean
isPayloadFormat
int
size
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Format
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Format10t
public static final Format Format10t
-
Format10x
public static final Format Format10x
-
Format11n
public static final Format Format11n
-
Format11x
public static final Format Format11x
-
Format12x
public static final Format Format12x
-
Format20bc
public static final Format Format20bc
-
Format20t
public static final Format Format20t
-
Format21c
public static final Format Format21c
-
Format21ih
public static final Format Format21ih
-
Format21lh
public static final Format Format21lh
-
Format21s
public static final Format Format21s
-
Format21t
public static final Format Format21t
-
Format22b
public static final Format Format22b
-
Format22c
public static final Format Format22c
-
Format22cs
public static final Format Format22cs
-
Format22s
public static final Format Format22s
-
Format22t
public static final Format Format22t
-
Format22x
public static final Format Format22x
-
Format23x
public static final Format Format23x
-
Format30t
public static final Format Format30t
-
Format31c
public static final Format Format31c
-
Format31i
public static final Format Format31i
-
Format31t
public static final Format Format31t
-
Format32x
public static final Format Format32x
-
Format35c
public static final Format Format35c
-
Format35mi
public static final Format Format35mi
-
Format35ms
public static final Format Format35ms
-
Format3rc
public static final Format Format3rc
-
Format3rmi
public static final Format Format3rmi
-
Format3rms
public static final Format Format3rms
-
Format45cc
public static final Format Format45cc
-
Format4rcc
public static final Format Format4rcc
-
Format51l
public static final Format Format51l
-
ArrayPayload
public static final Format ArrayPayload
-
PackedSwitchPayload
public static final Format PackedSwitchPayload
-
SparseSwitchPayload
public static final Format SparseSwitchPayload
-
UnresolvedOdexInstruction
public static final Format UnresolvedOdexInstruction
-
-
Method Detail
-
values
public static Format[] 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 (Format c : Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Format 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
-
-