Package ghidra.util.table.column
Enum GColumnRenderer.ColumnConstraintFilterMode
- java.lang.Object
-
- java.lang.Enum<GColumnRenderer.ColumnConstraintFilterMode>
-
- ghidra.util.table.column.GColumnRenderer.ColumnConstraintFilterMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GColumnRenderer.ColumnConstraintFilterMode>
- Enclosing interface:
- GColumnRenderer<T>
public static enum GColumnRenderer.ColumnConstraintFilterMode extends java.lang.Enum<GColumnRenderer.ColumnConstraintFilterMode>
An enum that signals how the advanced column filtering should work. (This does not affect the normal table filtering that happens via the filter text field).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOW_ALL_FILTERS
Use both the rendered filter String and any found column constraintsALLOW_CONSTRAINTS_FILTER_ONLY
Use only column constraints when filteringALLOW_RENDERER_STRING_FILTER_ONLY
Use onlyGColumnRenderer.getFilterString(Object, Settings)
value; no constraints
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GColumnRenderer.ColumnConstraintFilterMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GColumnRenderer.ColumnConstraintFilterMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLOW_RENDERER_STRING_FILTER_ONLY
public static final GColumnRenderer.ColumnConstraintFilterMode ALLOW_RENDERER_STRING_FILTER_ONLY
Use onlyGColumnRenderer.getFilterString(Object, Settings)
value; no constraints
-
ALLOW_CONSTRAINTS_FILTER_ONLY
public static final GColumnRenderer.ColumnConstraintFilterMode ALLOW_CONSTRAINTS_FILTER_ONLY
Use only column constraints when filtering
-
ALLOW_ALL_FILTERS
public static final GColumnRenderer.ColumnConstraintFilterMode ALLOW_ALL_FILTERS
Use both the rendered filter String and any found column constraints
-
-
Method Detail
-
values
public static GColumnRenderer.ColumnConstraintFilterMode[] 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 (GColumnRenderer.ColumnConstraintFilterMode c : GColumnRenderer.ColumnConstraintFilterMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GColumnRenderer.ColumnConstraintFilterMode 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
-
-