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 DEFAULT
Signals that the programmer didn't make a decision about how filtering for this column should work.USE_BOTH_COLUMN_RENDERER_FITLER_STRING_AND_CONSTRAINTS
Use both the rendered filter String and any found column constraintsUSE_COLUMN_CONSTRAINTS_ONLY
Use only column constraints when filteringUSE_COLUMN_RENDERER_FITLER_STRING_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
-
DEFAULT
public static final GColumnRenderer.ColumnConstraintFilterMode DEFAULT
Signals that the programmer didn't make a decision about how filtering for this column should work. This currently will treat all filtering as ifUSE_COLUMN_RENDERER_FITLER_STRING_ONLY
was chosen.
-
USE_COLUMN_RENDERER_FITLER_STRING_ONLY
public static final GColumnRenderer.ColumnConstraintFilterMode USE_COLUMN_RENDERER_FITLER_STRING_ONLY
Use onlyGColumnRenderer.getFilterString(Object, Settings)
value; no constraints
-
USE_COLUMN_CONSTRAINTS_ONLY
public static final GColumnRenderer.ColumnConstraintFilterMode USE_COLUMN_CONSTRAINTS_ONLY
Use only column constraints when filtering
-
USE_BOTH_COLUMN_RENDERER_FITLER_STRING_AND_CONSTRAINTS
public static final GColumnRenderer.ColumnConstraintFilterMode USE_BOTH_COLUMN_RENDERER_FITLER_STRING_AND_CONSTRAINTS
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
-
-