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.
  • Enum Constant Details

    • EXACTLY

      public static final ObjectClassSizeEstimationPrecisionType EXACTLY
      We know the value for sure, e.g. because we counted the objects.
    • APPROXIMATELY

      public static final ObjectClassSizeEstimationPrecisionType APPROXIMATELY
      The real value can be greater or lesser than the estimate.
    • AT_LEAST

      public static final ObjectClassSizeEstimationPrecisionType 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

      public static ObjectClassSizeEstimationPrecisionType[] 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

      public static ObjectClassSizeEstimationPrecisionType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static ObjectClassSizeEstimationPrecisionType fromValue(String v)