Enum Product

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Product>

    public enum Product
    extends java.lang.Enum<Product>
    • Enum Constant Detail

      • BARCODE

        public static final Product BARCODE
      • METER

        public static final Product METER
      • DIAL_METER

        public static final Product DIAL_METER
      • UNIVERSAL_ID

        public static final Product UNIVERSAL_ID
      • MRZ

        public static final Product MRZ
      • GERMAN_ID_FRONT

        public static final Product GERMAN_ID_FRONT
      • VIN

        public static final Product VIN
      • TIN

        public static final Product TIN
      • COMMERCIAL_TIRE_ID

        public static final Product COMMERCIAL_TIRE_ID
      • TIRE_SIZE

        public static final Product TIRE_SIZE
      • CONTAINER

        public static final Product CONTAINER
      • CONTAINER_VERTICAL

        public static final Product CONTAINER_VERTICAL
      • LICENSE_PLATE

        public static final Product LICENSE_PLATE
      • OCR

        public static final Product OCR
      • DOCUMENT

        public static final Product DOCUMENT
      • JAPANESE_LANDING_PERMISSION

        public static final Product JAPANESE_LANDING_PERMISSION
      • VEHICLE_REGISTRATION_CERTIFICATE

        public static final Product VEHICLE_REGISTRATION_CERTIFICATE
    • Method Detail

      • values

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

        public static Product valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static Product fromString​(java.lang.String product)
      • getProduct

        public java.lang.String getProduct()
      • toString

        @NonNull
        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Product>