Enum Catalog

    • Enum Constant Detail

      • SUPPLIER

        public static final Catalog SUPPLIER
      • CUSTOMER

        public static final Catalog CUSTOMER
      • EMPLOYEE

        public static final Catalog EMPLOYEE
      • OPERATOR

        public static final Catalog OPERATOR
      • MACHINE

        public static final Catalog MACHINE
      • TOOL

        public static final Catalog TOOL
      • MANUFACTURER

        public static final Catalog MANUFACTURER
      • MATERIAL

        public static final Catalog MATERIAL
      • UNIT

        public static final Catalog UNIT
      • DRAWING

        public static final Catalog DRAWING
      • PRODUCT

        public static final Catalog PRODUCT
      • PURCHASE_ORDER

        public static final Catalog PURCHASE_ORDER
      • EVENT

        public static final Catalog EVENT
        BEWARE - table is the same for Event, Cause and Measure catalogs - catalogs are separated by ID offset (OMG WTF?)
      • CAUSE

        public static final Catalog CAUSE
        BEWARE - table is the same for Event, Cause and Measure catalogs - catalogs are separated by ID offset (OMG WTF?)
      • MEASURE

        public static final Catalog MEASURE
        BEWARE - table is the same for Event, Cause and Measure catalogs - catalogs are separated by ID offset (OMG WTF?)
      • ORDINAL_CLASS

        public static final Catalog ORDINAL_CLASS
      • CONTRACTOR

        public static final Catalog CONTRACTOR
      • GAGE

        public static final Catalog GAGE
      • PROCESS_PARAMETER

        public static final Catalog PROCESS_PARAMETER
      • K0061

        public static final Catalog K0061
      • K0062

        public static final Catalog K0062
      • K0063

        public static final Catalog K0063
    • Method Detail

      • values

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

        public static Catalog 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
      • getTableName

        public String getTableName()