Enum ErrorOccurrence

    • Enum Constant Detail

      • BEFORE_SOURCE_MAPPING

        public static final ErrorOccurrence BEFORE_SOURCE_MAPPING
      • STORE_ON_SINK_ERROR

        public static final ErrorOccurrence STORE_ON_SINK_ERROR
      • STORE_ON_STREAM_ERROR

        public static final ErrorOccurrence STORE_ON_STREAM_ERROR
      • STORE_ON_TABLE_ADD

        public static final ErrorOccurrence STORE_ON_TABLE_ADD
      • STORE_ON_TABLE_FIND

        public static final ErrorOccurrence STORE_ON_TABLE_FIND
      • STORE_ON_TABLE_DELETE

        public static final ErrorOccurrence STORE_ON_TABLE_DELETE
      • STORE_ON_TABLE_UPDATE

        public static final ErrorOccurrence STORE_ON_TABLE_UPDATE
      • STORE_ON_TABLE_UPDATE_OR_ADD

        public static final ErrorOccurrence STORE_ON_TABLE_UPDATE_OR_ADD
      • STORE_ON_TABLE_CONTAINS

        public static final ErrorOccurrence STORE_ON_TABLE_CONTAINS
    • Method Detail

      • values

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

        public static ErrorOccurrence 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