Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
wt.introspection.DataType
All Implemented Interfaces:
Serializable, Comparable<DataType>, Constable

public enum DataType extends Enum<DataType>
Indicates the type of data stored by a Persistable class. The primary distinction is between business domain data (user data) and internal system data (admin data).

Supported API: true

  • Enum Constant Details

    • DEFAULT

      public static final DataType DEFAULT
      Indicates that this class has not been specified as any particular data type.

      Supported API: true

    • ADMIN

      public static final DataType ADMIN
      Indicates that instances of this class are administrative data, maintained and owned by PTC. This is largely internal data, with which the user does not directly interact.

      Supported API: true

    • USER_ADMIN

      public static final DataType USER_ADMIN
      Indicates that instances of this class are administrative data, but they can be maintained by users.

      Supported API: true

    • USER

      public static final DataType USER
      Indicates that instances of this class are maintained and owned by users.

      Supported API: true