Enum QuarantineReason

    • Enum Constant Detail

      • ENCOUNTERED_BASE_ESCROW_THRESHOLD

        public static final QuarantineReason ENCOUNTERED_BASE_ESCROW_THRESHOLD
      • ENCOUNTERED_TOTAL_ESCROW_THRESHOLD

        public static final QuarantineReason ENCOUNTERED_TOTAL_ESCROW_THRESHOLD
      • ENCOUNTERED_ESCROW_PROPORTION_THRESHOLD

        public static final QuarantineReason ENCOUNTERED_ESCROW_PROPORTION_THRESHOLD
      • ENCOUNTERED_QUARANTINE_EXCEPTION

        public static final QuarantineReason ENCOUNTERED_QUARANTINE_EXCEPTION
      • QUARANTINED_ON_DEMAND

        public static final QuarantineReason QUARANTINED_ON_DEMAND
      • INGESTION_INTERRUPTED

        public static final QuarantineReason INGESTION_INTERRUPTED
    • Method Detail

      • values

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

        public static QuarantineReason 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
      • enumName

        public String enumName()
        Specified by:
        enumName in interface com.github.davidmoten.odata.client.Enum
      • enumValue

        public String enumValue()
        Specified by:
        enumValue in interface com.github.davidmoten.odata.client.Enum