Enum Class ObjectClassSizeEstimationPrecisionType
java.lang.Object
java.lang.Enum<ObjectClassSizeEstimationPrecisionType>
com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectClassSizeEstimationPrecisionType
- All Implemented Interfaces:
TypeSafeEnum,Serializable,Comparable<ObjectClassSizeEstimationPrecisionType>,Constable
public enum ObjectClassSizeEstimationPrecisionType
extends Enum<ObjectClassSizeEstimationPrecisionType>
implements TypeSafeEnum
Precision or style of the size estimation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe real value can be greater or lesser than the estimate.The real value is at least the provided estimate.We know the value for sure, e.g. because we counted the objects. -
Method Summary
-
Enum Constant Details
-
EXACTLY
We know the value for sure, e.g. because we counted the objects. -
APPROXIMATELY
The real value can be greater or lesser than the estimate. -
AT_LEAST
The real value is at least the provided estimate. Usually this means that we were able to retrieve at least the specified number of objects. This means that the real value can be much larger than the provided estimate.
-
-
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
-
value
Description copied from interface:TypeSafeEnumReturns enum value defined as in schema.- Specified by:
valuein interfaceTypeSafeEnum- Returns:
-
fromValue
-