Package ghidra.program.model.data
Enum Class AlignmentType
- All Implemented Interfaces:
Serializable
,Comparable<AlignmentType>
,Constable
AlignmentType
specifies the type of alignment which applies to a composite data type.
This can be DEFAULT, MACHINE, EXPLICIT. For packed composites, the length of the composite
will be padded to force the length to a multiple of the computed alignment.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDEFAULT - this data type's alignment is computed based upon its current pack setting and data organization rules.MACHINE - this data type's alignment will be a multiple of the explicit alignment value specified for the datatype.MACHINE - this data type's alignment will be a multiple of the machine alignment specified by the data organization. -
Method Summary
Modifier and TypeMethodDescriptionstatic AlignmentType
Returns the enum constant of this class with the specified name.static AlignmentType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
DEFAULT - this data type's alignment is computed based upon its current pack setting and data organization rules. If packing is disabled the computed alignment will be 1. -
MACHINE
MACHINE - this data type's alignment will be a multiple of the machine alignment specified by the data organization. In general, and for all non-packed composites, the computed alignment will match the machine alignment if this setting is used. -
EXPLICIT
MACHINE - this data type's alignment will be a multiple of the explicit alignment value specified for the datatype. For all non-packed composites, the computed alignment will match the machine alignment if this setting is used.
-
-
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
-