Enum Class IMetaPrimitive.ValueType

java.lang.Object
java.lang.Enum<IMetaPrimitive.ValueType>
com.mendix.systemwideinterfaces.core.meta.IMetaPrimitive.ValueType
All Implemented Interfaces:
Serializable, Comparable<IMetaPrimitive.ValueType>, Constable
Enclosing interface:
IMetaPrimitive

public static enum IMetaPrimitive.ValueType extends Enum<IMetaPrimitive.ValueType>
Defines all possible value types.
  • Enum Constant Details

    • StoredValue

      public static final IMetaPrimitive.ValueType StoredValue
      The value is stored in the database.
    • CalculatedValue

      public static final IMetaPrimitive.ValueType CalculatedValue
      The value is calculated by a microflow.
    • MappedValue

      public static final IMetaPrimitive.ValueType MappedValue
      The value is retrieved from an external system.
    • ViewValue

      public static final IMetaPrimitive.ValueType ViewValue
      The value is calculated by an OQL view. This is an experimental feature that may not be available yet.
  • Method Details

    • values

      public static IMetaPrimitive.ValueType[] 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 IMetaPrimitive.ValueType 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