Enum AccessLogPublisherCfgDefn.FilteringPolicy
- java.lang.Object
-
- java.lang.Enum<AccessLogPublisherCfgDefn.FilteringPolicy>
-
- org.forgerock.opendj.server.config.meta.AccessLogPublisherCfgDefn.FilteringPolicy
-
- All Implemented Interfaces:
Serializable
,Comparable<AccessLogPublisherCfgDefn.FilteringPolicy>
- Enclosing class:
- AccessLogPublisherCfgDefn
public static enum AccessLogPublisherCfgDefn.FilteringPolicy extends Enum<AccessLogPublisherCfgDefn.FilteringPolicy>
Defines the set of permissible values for the "filtering-policy" property.Specifies how filtering criteria should be applied to log records.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCLUSIVE
Records must not match any of the filtering criteria in order to be logged.INCLUSIVE
Records must match at least one of the filtering criteria in order to be logged.NO_FILTERING
No filtering will be performed, and all records will be logged.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static AccessLogPublisherCfgDefn.FilteringPolicy
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessLogPublisherCfgDefn.FilteringPolicy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCLUSIVE
public static final AccessLogPublisherCfgDefn.FilteringPolicy EXCLUSIVE
Records must not match any of the filtering criteria in order to be logged.
-
INCLUSIVE
public static final AccessLogPublisherCfgDefn.FilteringPolicy INCLUSIVE
Records must match at least one of the filtering criteria in order to be logged.
-
NO_FILTERING
public static final AccessLogPublisherCfgDefn.FilteringPolicy NO_FILTERING
No filtering will be performed, and all records will be logged.
-
-
Method Detail
-
values
public static AccessLogPublisherCfgDefn.FilteringPolicy[] 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 (AccessLogPublisherCfgDefn.FilteringPolicy c : AccessLogPublisherCfgDefn.FilteringPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessLogPublisherCfgDefn.FilteringPolicy valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<AccessLogPublisherCfgDefn.FilteringPolicy>
-
-