Enum CorrelatorAuthorityLevelType

    • Enum Constant Detail

      • PRINCIPAL

        public static final CorrelatorAuthorityLevelType PRINCIPAL
        If the correlator provides an owner (must be 0 or 1), it is taken immediately as the result of the correlation.
      • AUTHORITATIVE

        public static final CorrelatorAuthorityLevelType AUTHORITATIVE
        If the correlator provides an owner (must be 0 or 1), it is considered along with other results from authoritative correlators. If - by chance - they return contradicting answers, they are presented to the operator.
      • NON_AUTHORITATIVE

        public static final CorrelatorAuthorityLevelType NON_AUTHORITATIVE
        TODO Note that the evaluation stops before the first non-authoritative correlator, if there is an authoritative owner found at that time. So all authoritative/principal should be evaluated before the first non-authoritative correlator.
    • Method Detail

      • values

        public static CorrelatorAuthorityLevelType[] 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 (CorrelatorAuthorityLevelType c : CorrelatorAuthorityLevelType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CorrelatorAuthorityLevelType 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 name
        NullPointerException - if the argument is null
      • value

        public String value()