Package org.opends.server.core
Enum CoreConfigManager.EtimeServices
- java.lang.Object
-
- java.lang.Enum<CoreConfigManager.EtimeServices>
-
- org.opends.server.core.CoreConfigManager.EtimeServices
-
- All Implemented Interfaces:
Serializable
,Comparable<CoreConfigManager.EtimeServices>
,CoreConfigManager.EtimeService
- Enclosing class:
- CoreConfigManager
public static enum CoreConfigManager.EtimeServices extends Enum<CoreConfigManager.EtimeServices> implements CoreConfigManager.EtimeService
Implementation of services providing etimes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MILLI_TIME
Provides etimes using millisecond precision.NANO_TIME
Provides etimes using nanosecond precision.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoreConfigManager.EtimeServices
valueOf​(String name)
Returns the enum constant of this type with the specified name.static CoreConfigManager.EtimeServices[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.opends.server.core.CoreConfigManager.EtimeService
getTimeUnit, now, since
-
-
-
-
Enum Constant Detail
-
MILLI_TIME
public static final CoreConfigManager.EtimeServices MILLI_TIME
Provides etimes using millisecond precision.
-
NANO_TIME
public static final CoreConfigManager.EtimeServices NANO_TIME
Provides etimes using nanosecond precision.
-
-
Method Detail
-
values
public static CoreConfigManager.EtimeServices[] 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 (CoreConfigManager.EtimeServices c : CoreConfigManager.EtimeServices.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoreConfigManager.EtimeServices 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
-
-