Package ghidra.util.table.column
Enum Class GColumnRenderer.ColumnConstraintFilterMode
java.lang.Object
java.lang.Enum<GColumnRenderer.ColumnConstraintFilterMode>
ghidra.util.table.column.GColumnRenderer.ColumnConstraintFilterMode
- All Implemented Interfaces:
Serializable
,Comparable<GColumnRenderer.ColumnConstraintFilterMode>
,Constable
- Enclosing interface:
GColumnRenderer<T>
public static enum GColumnRenderer.ColumnConstraintFilterMode
extends 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).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUse both the rendered filter String and any found column constraintsUse only column constraints when filteringUse onlyGColumnRenderer.getFilterString(Object, Settings)
value; no constraints -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALLOW_RENDERER_STRING_FILTER_ONLY
Use onlyGColumnRenderer.getFilterString(Object, Settings)
value; no constraints -
ALLOW_CONSTRAINTS_FILTER_ONLY
Use only column constraints when filtering -
ALLOW_ALL_FILTERS
Use both the rendered filter String and any found column constraints
-
-
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
-