Enum Class MfgItemMask

java.lang.Object
java.lang.Enum<MfgItemMask>
com.technia.dsx.threedspace.mfg.item.MfgItemMask
All Implemented Interfaces:
com.technia.dsx.EnumType, Serializable, Comparable<MfgItemMask>, Constable

public enum MfgItemMask extends Enum<MfgItemMask> implements com.technia.dsx.EnumType
Represents mask types for manufacturing item operations.

Masks control what data is returned or modified in manufacturing item operations. Available masks include Default and Details, with different restrictions on usage in search and create operations.

Since:
2023-04-05
  • Enum Constant Details

  • Method Details

    • values

      public static MfgItemMask[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MfgItemMask valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • defaultIfNull

      public static MfgItemMask defaultIfNull(MfgItemMask mask)
    • fromString

      public static MfgItemMask fromString(String str)
    • fromString

      public static MfgItemMask fromString(String str, MfgItemMask defaultValue)
    • getMfgItemType

      public Class<? extends MfgItem> getMfgItemType()
    • isAllowUseInSearch

      public boolean isAllowUseInSearch()
    • isAllowUseWhenCreate

      public boolean isAllowUseWhenCreate()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<MfgItemMask>