Enum AssemblageConfig.RequireEnum

    • Enum Constant Detail

      • IF_TARGET_EMPTY

        public static final AssemblageConfig.RequireEnum IF_TARGET_EMPTY
        Only required to give this if the target object lacks this. E.g. an object may have been matced on crid, and then existing object provides the MID
      • ELSE_SKIP

        public static final AssemblageConfig.RequireEnum ELSE_SKIP
        If not given, the entire associated object will be skipped without error (but warnings probably). E.g. an incoming object from PREPR can be ignored.
    • Method Detail

      • values

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

        public static AssemblageConfig.RequireEnum 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