Class EnumDataType
- Direct Known Subclasses:
 CliAbstractSig.CliTypeCodeDataType,CliBlobMarshalSpec.CliNativeTypeDataType,CliBlobMarshalSpec.CliSafeArrayElemTypeDataType,CliFlags.CliEnumAssemblyFlags,CliFlags.CliEnumAssemblyHashAlgorithm,CliFlags.CliEnumEventAttributes,CliFlags.CliEnumFieldAttributes,CliFlags.CliEnumFileAttributes,CliFlags.CliEnumGenericParamAttributes,CliFlags.CliEnumManifestResourceAttributes,CliFlags.CliEnumMethodAttributes,CliFlags.CliEnumMethodImplAttributes,CliFlags.CliEnumMethodSemanticsAttributes,CliFlags.CliEnumParamAttributes,CliFlags.CliEnumPInvokeAttributes,CliFlags.CliEnumPropertyAttributes,CliFlags.CliEnumTypeAttributes,ImageCor20Header.ImageCor20Flags
- 
Field Summary
Fields inherited from class ghidra.program.model.data.DataTypeImpl
defaultSettingsFields inherited from class ghidra.program.model.data.AbstractDataType
categoryPath, dataMgr, nameFields inherited from interface ghidra.program.model.data.DataType
CONFLICT_SUFFIX, DEFAULT, NO_LAST_CHANGE_TIME, NO_SOURCE_SYNC_TIME, TYPEDEF_ATTRIBUTE_PREFIX, TYPEDEF_ATTRIBUTE_SUFFIX, VOID - 
Constructor Summary
ConstructorsConstructorDescriptionEnumDataType(CategoryPath path, String name, int length) EnumDataType(CategoryPath path, String name, int length, DataTypeManager dtm) EnumDataType(CategoryPath path, String name, int length, UniversalID universalID, SourceArchive sourceArchive, long lastChangeTime, long lastChangeTimeInSourceArchive, DataTypeManager dtm) EnumDataType(String name, int length)  - 
Method Summary
Modifier and TypeMethodDescriptionvoidAdd a enum entry.voidAdd a enum entry.clone(DataTypeManager dtm) Returns an instance of this DataType using the specifiedDataTypeManagerto allow its use of the correspondingDataOrganizationwhile retaining its unique identity (seeDataType.getUniversalID()and archive association (seeDataType.getSourceArchive()) if applicable.booleancontains(long value) Returns true if this enum has an entry with the given value.booleanReturns true if this enum has an entry with the given name.copy(DataTypeManager dtm) Returns a new instance (shallow copy) of this DataType with a new identity and no source archive association.intGet the aligned-length of this datatype as a number of 8-bit bytes.getComment(String valueName) Get the comment for the given name.intgetCount()Get the number of entries in this Enum.Returns the appropriate string to use as the default label prefix in the absence of any data.Get a String briefly describing this DataType.intGet the length of this DataType as a number of 8-bit bytes.longReturns the maximum value that this enum can represent based on its size and signedness.intReturns the smallest length (size in bytes) this enum can be and still represent all of it's current values.longReturns the maximum value that this enum can represent based on its size and signedness.getMnemonic(Settings settings) Get the mnemonic for this DataType.getName(long value) Get the name for the given value.String[]getNames()Get the names of the enum entries.String[]getNames(long value) Returns all names that map to the given value.getRepresentation(MemBuffer buf, Settings settings, int valueLength) Get bytes from memory in a printable format for this type.getRepresentation(BigInteger bigInt, Settings settings, int bitLength) Get enum representation of the big-endian value.Get the list of settings definitions available for use with this datatype.Returns the signed state.Returns the interpreted data value as an instance of theadvertised value class.longGet the value for the given name.Class<?> getValueClass(Settings settings) Get the Class of the value Object to be returned by this datatype (seeDataType.getValue(MemBuffer, Settings, int)).long[]Get the values of the enum entries.booleanisEquivalent(DataType dt) Check if the given datatype is equivalent to this datatype.booleanisSigned()Returns true if the enum contains at least one negative value.voidpack()Sets this enum to it smallest (power of 2) size that it can be and still represent all its current values.voidRemove the enum entry with the given name.voidreplaceWith(DataType dataType) For datatypes that support change, this method replaces the internals of this datatype with the internals of the given datatype.voidsetDescription(String description) Sets a String briefly describing this DataType.voidsetLength(int newLength) Methods inherited from class ghidra.program.model.data.GenericDataType
setCategoryPath, setName, setNameAndCategoryMethods inherited from class ghidra.program.model.data.DataTypeImpl
addParent, equals, getAlignment, getDefaultSettings, getLastChangeTime, getLastChangeTimeInSourceArchive, getParents, getPathName, getSourceArchive, getUniversalID, hashCode, notifyAlignmentChanged, notifyDeleted, notifyNameChanged, notifyParents, notifyReplaced, notifySizeChanged, removeParent, setLastChangeTime, setLastChangeTimeInSourceArchive, setSourceArchiveMethods inherited from class ghidra.program.model.data.AbstractDataType
dataTypeAlignmentChanged, dataTypeDeleted, dataTypeNameChanged, dataTypeReplaced, dataTypeSizeChanged, dependsOn, encodeRepresentation, encodeValue, getCategoryPath, getDataOrganization, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultLabelPrefix, getDefaultOffcutLabelPrefix, getDisplayName, getName, getTypeDefSettingsDefinitions, hasLanguageDependantLength, isDeleted, isEncodable, isNotYetDefined, isZeroLength, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.program.model.data.DataType
addParent, dataTypeAlignmentChanged, dataTypeDeleted, dataTypeNameChanged, dataTypeReplaced, dataTypeSizeChanged, dependsOn, encodeRepresentation, encodeValue, getAlignment, getCategoryPath, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultLabelPrefix, getDefaultOffcutLabelPrefix, getDefaultSettings, getDisplayName, getLastChangeTime, getLastChangeTimeInSourceArchive, getName, getParents, getPathName, getSourceArchive, getTypeDefSettingsDefinitions, getUniversalID, hasLanguageDependantLength, isDeleted, isEncodable, isNotYetDefined, isZeroLength, removeParent, setCategoryPath, setLastChangeTime, setLastChangeTimeInSourceArchive, setName, setNameAndCategory, setSourceArchive 
- 
Constructor Details
- 
EnumDataType
 - 
EnumDataType
 - 
EnumDataType
 - 
EnumDataType
public EnumDataType(CategoryPath path, String name, int length, UniversalID universalID, SourceArchive sourceArchive, long lastChangeTime, long lastChangeTimeInSourceArchive, DataTypeManager dtm)  
 - 
 - 
Method Details
- 
getSettingsDefinitions
Description copied from interface:DataTypeGet the list of settings definitions available for use with this datatype.In the case of a
TypeDef, the return list will include theTypeDefSettingsDefinitionlist from the associated base data type.Unlike
TypeDefSettingsDefinitionstandard settings definitions generally support default, component-default and data-instance use. In addition, standard settings definitions are never considered duringDataType.isEquivalent(DataType)checking or during the resolve process.- Specified by:
 getSettingsDefinitionsin interfaceDataType- Overrides:
 getSettingsDefinitionsin classDataTypeImpl- Returns:
 - list of the settings definitions for this datatype.
 
 - 
getValue
Description copied from interface:EnumGet the value for the given name.- Specified by:
 getValuein interfaceEnum- Parameters:
 valueName- name of the entry.- Returns:
 - the value.
 - Throws:
 NoSuchElementException- if the name does not exist in this Enum.
 - 
getName
Description copied from interface:EnumGet the name for the given value. - 
getNames
Description copied from interface:EnumReturns all names that map to the given value. - 
getComment
Description copied from interface:EnumGet the comment for the given name.- Specified by:
 getCommentin interfaceEnum- Parameters:
 valueName- name of the entry.- Returns:
 - the comment or the empty string if the name does not exist in this enum or if no comment is set.
 
 - 
getValues
public long[] getValues()Description copied from interface:EnumGet the values of the enum entries. - 
getNames
Description copied from interface:EnumGet the names of the enum entries. The returned names are first sorted by the enum int value, then sub-sorted by name value where there are multiple name values per int value. - 
getCount
public int getCount()Description copied from interface:EnumGet the number of entries in this Enum. - 
add
Description copied from interface:EnumAdd a enum entry. - 
add
Description copied from interface:EnumAdd a enum entry. - 
remove
Description copied from interface:EnumRemove the enum entry with the given name. - 
copy
Description copied from interface:DataTypeReturns a new instance (shallow copy) of this DataType with a new identity and no source archive association.Any reference to other datatypes will use
DataType.clone(DataTypeManager). - 
clone
Description copied from interface:DataTypeReturns an instance of this DataType using the specifiedDataTypeManagerto allow its use of the correspondingDataOrganizationwhile retaining its unique identity (seeDataType.getUniversalID()and archive association (seeDataType.getSourceArchive()) if applicable.This instance will be returned if this datatype's DataTypeManager matches the specified dtm. The recursion depth of a clone will stop on any datatype whose
DataTypeManagermatches the specified dtm and simply use the existing datatype instance.NOTE: In general, this method should not be used to obtain an instance to be modified. In most cases changes may be made directly to this instance if supported or to a
DataType.copy(DataTypeManager)of this type. - 
getMnemonic
Description copied from interface:DataTypeGet the mnemonic for this DataType.- Specified by:
 getMnemonicin interfaceDataType- Overrides:
 getMnemonicin classAbstractDataType- Parameters:
 settings- settings which may influence the result or null- Returns:
 - the mnemonic for this DataType.
 
 - 
getLength
public int getLength()Description copied from interface:DataTypeGet the length of this DataType as a number of 8-bit bytes.For primitive datatypes this reflects the smallest varnode which can be used to contain its value (i.e., raw data length).
Example: For x86 32-bit gcc an 80-bit
long doubleraw data lengthof 10-bytes will fit within a floating point register while itsaligned-lengthof 12-bytes is used by the gcc compiler for data/array/component allocations to maintain alignment (i.e.,sizeof(long double)).NOTE: Other than the
VoidDataType, no datatype should ever return 0, even ifDataType.isZeroLength(), and onlyDynamic/FactoryDataTypedatatypes should return -1. IfDataType.isZeroLength()is true a length of 1 should be returned. Where a zero-length datatype can be handled (e.g.,Composite) theDataType.isZeroLength()method should be used. - 
getAlignedLength
public int getAlignedLength()Description copied from interface:DataTypeGet the aligned-length of this datatype as a number of 8-bit bytes.For primitive datatypes this is equivalent to the C/C++ "sizeof" operation within source code and should be used when determining
Arrayelement length or component sizing for aComposite. ForPointer,CompositeandArraytypes this will return the same value asDataType.getLength().Example: For x86 32-bit gcc an 80-bit
long doubleraw data lengthof 10-bytes will fit within a floating point register while itsaligned-lengthof 12-bytes is used by the gcc compiler for data/array/component allocations to maintain alignment (i.e.,sizeof(long double)).NOTE: Other than the
VoidDataType, no datatype should ever return 0, even ifDataType.isZeroLength(), and onlyDynamic/FactoryDataType/FunctionDefinitiondatatypes should return -1. IfDataType.isZeroLength()is true a length of 1 should be returned.- Specified by:
 getAlignedLengthin interfaceDataType- Overrides:
 getAlignedLengthin classDataTypeImpl- Returns:
 - byte length of binary encoding.
 
 - 
setLength
public void setLength(int newLength)  - 
isSigned
public boolean isSigned()Description copied from interface:EnumReturns true if the enum contains at least one negative value. Internally, enums have three states, signed, unsigned, and none (can't tell from the values). If any of the values are negative, the enum is considered signed. If any of the values are large unsigned values (upper bit set), then it is considered unsigned. This method will return true if the enum is signed, and false if it is either unsigned or none (meaning that it doesn't matter for the values that are contained in the enum. - 
getSignedState
Description copied from interface:EnumReturns the signed state.- Specified by:
 getSignedStatein interfaceEnum- Returns:
 - the signed state.
 
 - 
getMinPossibleValue
public long getMinPossibleValue()Description copied from interface:EnumReturns the maximum value that this enum can represent based on its size and signedness.- Specified by:
 getMinPossibleValuein interfaceEnum- Returns:
 - the maximum value that this enum can represent based on its size and signedness.
 
 - 
getMaxPossibleValue
public long getMaxPossibleValue()Description copied from interface:EnumReturns the maximum value that this enum can represent based on its size and signedness.- Specified by:
 getMaxPossibleValuein interfaceEnum- Returns:
 - the maximum value that this enum can represent based on its size and signedness.
 
 - 
getMinimumPossibleLength
public int getMinimumPossibleLength()Description copied from interface:EnumReturns the smallest length (size in bytes) this enum can be and still represent all of it's current values. Note that this will only return powers of 2 (1,2,4, or 8)- Specified by:
 getMinimumPossibleLengthin interfaceEnum- Returns:
 - the smallest length (size in bytes) this enum can be and still represent all of it's current values
 
 - 
getDescription
Description copied from interface:DataTypeGet a String briefly describing this DataType.- Specified by:
 getDescriptionin interfaceDataType- Returns:
 - a one-liner describing this DataType.
 
 - 
setDescription
Description copied from class:DataTypeImplSets a String briefly describing this DataType.
If a data type that extends this class wants to allow the description to be changed, then it must override this method.- Specified by:
 setDescriptionin interfaceDataType- Specified by:
 setDescriptionin interfaceEnum- Overrides:
 setDescriptionin classDataTypeImpl- Parameters:
 description- a one-liner describing this DataType.
 - 
getValue
Description copied from interface:DataTypeReturns the interpreted data value as an instance of theadvertised value class.For instance,
Pointerdata types should return an Address object (or null), or integer data types should return aScalarobject.- Specified by:
 getValuein interfaceDataType- Parameters:
 buf- the data buffersettings- the settings to use.valueLength- indicates the maximum number of bytes that may be consumed by aDynamicdatatype, otherwise this value is ignored. A value of -1 may be specified to allow a Dynamic datatype to determine the length based upon the actual data bytes- Returns:
 - the data object, or null if data is invalid
 
 - 
getValueClass
Description copied from interface:DataTypeGet the Class of the value Object to be returned by this datatype (seeDataType.getValue(MemBuffer, Settings, int)).- Specified by:
 getValueClassin interfaceDataType- Overrides:
 getValueClassin classDataTypeImpl- Parameters:
 settings- the relevant settings to use or null for default.- Returns:
 - Class of the value to be returned by this datatype or null if it can vary or is unspecified. Types which correspond to a string or char array will return the String class.
 
 - 
getRepresentation
Description copied from interface:DataTypeGet bytes from memory in a printable format for this type.- Specified by:
 getRepresentationin interfaceDataType- Parameters:
 buf- the data.settings- the settings to use for the representation.valueLength- the number of bytes to represent.- Returns:
 - the representation of the data in this format, never null.
 
 - 
getRepresentation
Description copied from interface:EnumGet enum representation of the big-endian value.- Specified by:
 getRepresentationin interfaceEnum- Parameters:
 bigInt- BigInteger value with the appropriate signsettings- integer format settings (PADDING, FORMAT, etc.)bitLength- the bit length- Returns:
 - formatted integer string
 
 - 
isEquivalent
Description copied from interface:DataTypeCheck if the given datatype is equivalent to this datatype.The precise meaning of "equivalent" is datatype dependent.
NOTE: if invoked by a DB object or manager it should be invoked on the DataTypeDB object passing the other datatype as the argument.- Specified by:
 isEquivalentin interfaceDataType- Parameters:
 dt- the datatype being tested for equivalence.- Returns:
 - true if the if the given datatype is equivalent to this datatype.
 
 - 
replaceWith
Description copied from interface:DataTypeFor datatypes that support change, this method replaces the internals of this datatype with the internals of the given datatype.The datatypes must be of the same "type" (i.e. structure can only be replacedWith another structure.
- Specified by:
 replaceWithin interfaceDataType- Overrides:
 replaceWithin classDataTypeImpl- Parameters:
 dataType- the datatype that contains the internals to upgrade to.
 - 
getDefaultLabelPrefix
Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix in the absence of any data.- Specified by:
 getDefaultLabelPrefixin interfaceDataType- Overrides:
 getDefaultLabelPrefixin classAbstractDataType- Returns:
 - the default label prefix or null if none specified.
 
 - 
contains
Description copied from interface:EnumReturns true if this enum has an entry with the given name. - 
contains
public boolean contains(long value) Description copied from interface:EnumReturns true if this enum has an entry with the given value. - 
pack
public void pack()Sets this enum to it smallest (power of 2) size that it can be and still represent all its current values. 
 -