Enum DWARFAccessibility
- java.lang.Object
- 
- java.lang.Enum<DWARFAccessibility>
- 
- ghidra.app.util.bin.format.dwarf4.encoding.DWARFAccessibility
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DWARFAccessibility>
 
 public enum DWARFAccessibility extends java.lang.Enum<DWARFAccessibility> DWARF accessibility consts from www.dwarfstd.org/doc/DWARF4.pdf
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DW_ACCESS_privateDW_ACCESS_protectedDW_ACCESS_public
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DWARFAccessibilityfind(java.lang.Number key)Find the accessibility value given a Number value.intgetValue()Get the integer value of this enum.static DWARFAccessibilityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DWARFAccessibility[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DW_ACCESS_publicpublic static final DWARFAccessibility DW_ACCESS_public 
 - 
DW_ACCESS_protectedpublic static final DWARFAccessibility DW_ACCESS_protected 
 - 
DW_ACCESS_privatepublic static final DWARFAccessibility DW_ACCESS_private 
 
- 
 - 
Method Detail- 
valuespublic static DWARFAccessibility[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DWARFAccessibility c : DWARFAccessibility.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DWARFAccessibility valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getValuepublic int getValue() Get the integer value of this enum.- Returns:
- the integer value of the enum
 
 - 
findpublic static DWARFAccessibility find(java.lang.Number key) Find the accessibility value given a Number value.- Parameters:
- key- Number value to check
- Returns:
- DWARFAccessibility enum if it exists
- Throws:
- java.lang.IllegalArgumentException- if the key is not found
 
 
- 
 
-