Package tilda.enums

Enum ColumnMode

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

    public enum ColumnMode
    extends java.lang.Enum<ColumnMode>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AUTO
      A Column which is managed internally by the data object (for example, a cached or hidden value) and stored in the database but not available directly in the application code.
      CALCULATED
      A column that is actually only in the app-space.
      NORMAL
      Normal column
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ColumnMode parse​(java.lang.String Str)  
      static ColumnMode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ColumnMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • NORMAL

        public static final ColumnMode NORMAL
        Normal column
      • AUTO

        public static final ColumnMode AUTO
        A Column which is managed internally by the data object (for example, a cached or hidden value) and stored in the database but not available directly in the application code.
      • CALCULATED

        public static final ColumnMode CALCULATED
        A column that is actually only in the app-space. It's calculated and doesn't exist in the data store.
    • Method Detail

      • values

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

        public static ColumnMode 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
      • parse

        public static ColumnMode parse​(java.lang.String Str)