Package ghidra.debug.api.target
Enum Class Target.ObjectArgumentPolicy
- All Implemented Interfaces:
Serializable,Comparable<Target.ObjectArgumentPolicy>,Constable
- Enclosing interface:
Target
Specifies how object arguments are derived
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe object should be taken exactly from the action context, if applicable, present, and matching in schema.The object should be taken from the current (active) object in the tool, or a suitable relative having the correct schema.The object can be taken from the given context, or the current (active) object in the tool, or a suitable relative having the correct schema. -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanabstract booleanabstract booleanstatic Target.ObjectArgumentPolicyReturns the enum constant of this class with the specified name.static Target.ObjectArgumentPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTEXT_ONLY
The object should be taken exactly from the action context, if applicable, present, and matching in schema. -
CURRENT_AND_RELATED
The object should be taken from the current (active) object in the tool, or a suitable relative having the correct schema. -
EITHER_AND_RELATED
The object can be taken from the given context, or the current (active) object in the tool, or a suitable relative having the correct schema.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
allowContextObject
public abstract boolean allowContextObject() -
allowCoordsObject
public abstract boolean allowCoordsObject() -
allowSuitableRelative
public abstract boolean allowSuitableRelative()
-