Package ghidra.app.util.viewer.field
Enum XRefFieldFactory.SORT_CHOICE
- java.lang.Object
-
- java.lang.Enum<XRefFieldFactory.SORT_CHOICE>
-
- ghidra.app.util.viewer.field.XRefFieldFactory.SORT_CHOICE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<XRefFieldFactory.SORT_CHOICE>
- Enclosing class:
- XRefFieldFactory
public static enum XRefFieldFactory.SORT_CHOICE extends java.lang.Enum<XRefFieldFactory.SORT_CHOICE>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XRefFieldFactory.SORT_CHOICE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static XRefFieldFactory.SORT_CHOICE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Address
public static final XRefFieldFactory.SORT_CHOICE Address
-
Type
public static final XRefFieldFactory.SORT_CHOICE Type
-
-
Method Detail
-
values
public static XRefFieldFactory.SORT_CHOICE[] 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 (XRefFieldFactory.SORT_CHOICE c : XRefFieldFactory.SORT_CHOICE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XRefFieldFactory.SORT_CHOICE 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 namejava.lang.NullPointerException
- if the argument is null
-
-