Package ghidra.program.model.data
Enum Class StringLayoutEnum
- All Implemented Interfaces:
Serializable
,Comparable<StringLayoutEnum>
,Constable
Controls strings termination
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFixed length sequence of characters, all nulls retained.Fixed length string, trailing nulls trimmed, interior nulls retained.Null-terminated string that is limited to it's container's length.Null terminated string that ignores it's container's length when searching for terminating null character.Pascal string, using 1 byte for length field, max 255 char elements.Pascal string, using 2 bytes for length field, max 64k char elements -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if this layout is one of the fixed-size types.boolean
Returns true if this layout is one of the null terminated types.boolean
isPascal()
Returns true if this layout is one of the pascal types.boolean
Returns true if this layout should have its trailing null characters trimmed.toString()
static StringLayoutEnum
Returns the enum constant of this class with the specified name.static StringLayoutEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FIXED_LEN
Fixed length string, trailing nulls trimmed, interior nulls retained. -
CHAR_SEQ
Fixed length sequence of characters, all nulls retained. -
NULL_TERMINATED_UNBOUNDED
Null terminated string that ignores it's container's length when searching for terminating null character. -
NULL_TERMINATED_BOUNDED
Null-terminated string that is limited to it's container's length. -
PASCAL_255
Pascal string, using 1 byte for length field, max 255 char elements. -
PASCAL_64k
Pascal string, using 2 bytes for length field, max 64k char elements
-
-
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
-
toString
- Overrides:
toString
in classEnum<StringLayoutEnum>
-
isPascal
public boolean isPascal()Returns true if this layout is one of the pascal types.- Returns:
- boolean true if pascal
-
isNullTerminated
public boolean isNullTerminated()Returns true if this layout is one of the null terminated types.- Returns:
- boolean true if null terminated string
-
shouldTrimTrailingNulls
public boolean shouldTrimTrailingNulls()Returns true if this layout should have its trailing null characters trimmed.- Returns:
- boolean true if trailing nulls should be trimmed
-
isFixedLen
public boolean isFixedLen()Returns true if this layout is one of the fixed-size types.- Returns:
- boolean true if fixed length
-