Package com.bytedance.shadowhook
Enum ShadowHook.RecordItem
- java.lang.Object
-
- java.lang.Enum<ShadowHook.RecordItem>
-
- com.bytedance.shadowhook.ShadowHook.RecordItem
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShadowHook.RecordItem>
- Enclosing class:
- ShadowHook
public static enum ShadowHook.RecordItem extends java.lang.Enum<ShadowHook.RecordItem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKUP_LENCALLER_LIB_NAMEERRNOLIB_NAMENEW_ADDROPSTUBSYM_ADDRSYM_NAMETIMESTAMP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShadowHook.RecordItemvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ShadowHook.RecordItem[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMESTAMP
public static final ShadowHook.RecordItem TIMESTAMP
-
CALLER_LIB_NAME
public static final ShadowHook.RecordItem CALLER_LIB_NAME
-
OP
public static final ShadowHook.RecordItem OP
-
LIB_NAME
public static final ShadowHook.RecordItem LIB_NAME
-
SYM_NAME
public static final ShadowHook.RecordItem SYM_NAME
-
SYM_ADDR
public static final ShadowHook.RecordItem SYM_ADDR
-
NEW_ADDR
public static final ShadowHook.RecordItem NEW_ADDR
-
BACKUP_LEN
public static final ShadowHook.RecordItem BACKUP_LEN
-
ERRNO
public static final ShadowHook.RecordItem ERRNO
-
STUB
public static final ShadowHook.RecordItem STUB
-
-
Method Detail
-
values
public static ShadowHook.RecordItem[] 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 (ShadowHook.RecordItem c : ShadowHook.RecordItem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShadowHook.RecordItem 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
-
-