Enum AccessLogFilteringCriteriaCfgDefn.LogRecordType
- java.lang.Object
-
- java.lang.Enum<AccessLogFilteringCriteriaCfgDefn.LogRecordType>
-
- org.forgerock.opendj.server.config.meta.AccessLogFilteringCriteriaCfgDefn.LogRecordType
-
- All Implemented Interfaces:
Serializable,Comparable<AccessLogFilteringCriteriaCfgDefn.LogRecordType>
- Enclosing class:
- AccessLogFilteringCriteriaCfgDefn
public static enum AccessLogFilteringCriteriaCfgDefn.LogRecordType extends Enum<AccessLogFilteringCriteriaCfgDefn.LogRecordType>
Defines the set of permissable values for the "log-record-type" property.Filters log records based on their type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONAbandon operationsADDAdd operationsBINDBind operationsCOMPARECompare operationsCONNECTClient connectionsDELETEDelete operationsDISCONNECTClient disconnectionsEXTENDEDExtended operationsMODIFYModify operationsRENAMERename operationsSEARCHSearch operationsUNBINDUnbind operations
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static AccessLogFilteringCriteriaCfgDefn.LogRecordTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AccessLogFilteringCriteriaCfgDefn.LogRecordType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABANDON
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType ABANDON
Abandon operations
-
ADD
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType ADD
Add operations
-
BIND
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType BIND
Bind operations
-
COMPARE
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType COMPARE
Compare operations
-
CONNECT
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType CONNECT
Client connections
-
DELETE
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType DELETE
Delete operations
-
DISCONNECT
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType DISCONNECT
Client disconnections
-
EXTENDED
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType EXTENDED
Extended operations
-
MODIFY
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType MODIFY
Modify operations
-
RENAME
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType RENAME
Rename operations
-
SEARCH
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType SEARCH
Search operations
-
UNBIND
public static final AccessLogFilteringCriteriaCfgDefn.LogRecordType UNBIND
Unbind operations
-
-
Method Detail
-
values
public static AccessLogFilteringCriteriaCfgDefn.LogRecordType[] 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 (AccessLogFilteringCriteriaCfgDefn.LogRecordType c : AccessLogFilteringCriteriaCfgDefn.LogRecordType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessLogFilteringCriteriaCfgDefn.LogRecordType 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:
toStringin classEnum<AccessLogFilteringCriteriaCfgDefn.LogRecordType>
-
-