Enum Class ProgramSearchRegion
- All Implemented Interfaces:
SearchRegion
,Serializable
,Comparable<ProgramSearchRegion>
,Constable
An enum specifying the selectable regions within a
Program
that users can select for
searching memory.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns a description of the region.getName()
The name of the region.static ProgramSearchRegion
Returns the enum constant of this class with the specified name.static ProgramSearchRegion[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface ghidra.features.base.memsearch.bytesource.SearchRegion
getAddresses, isDefault
-
Enum Constant Details
-
LOADED
-
OTHER
-
-
Field Details
-
ALL
-
-
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
-
getName
Description copied from interface:SearchRegion
The name of the region.- Specified by:
getName
in interfaceSearchRegion
- Returns:
- the name of the region
-
getDescription
Description copied from interface:SearchRegion
Returns a description of the region.- Specified by:
getDescription
in interfaceSearchRegion
- Returns:
- a description of the region
-