Enum Class DefaultValues

java.lang.Object
java.lang.Enum<DefaultValues>
com.saperion.ngc.iform.field.defaultValue.DefaultValues
All Implemented Interfaces:
Serializable, Comparable<DefaultValues>, Constable

public enum DefaultValues extends Enum<DefaultValues>
Enumeration of available default value strings for IntelligentFields.
  • Enum Constant Details

    • SYSDATE

      public static final DefaultValues SYSDATE
      SysDate system variable.
    • SYSTIME

      public static final DefaultValues SYSTIME
      SysTime system variable.
    • USERNAME

      public static final DefaultValues USERNAME
      UserName system variable.
    • FILENAME

      public static final DefaultValues FILENAME
      Filename without path.
    • FILEPATH

      public static final DefaultValues FILEPATH
      File path.
    • FILEFULLNAME

      public static final DefaultValues FILEFULLNAME
      Filename and path.
    • FILEDATE

      public static final DefaultValues FILEDATE
      Date of last change on file.
    • FILETEXT

      public static final DefaultValues FILETEXT
      Content of file as text.
    • FILETIME

      public static final DefaultValues FILETIME
      Time of last change on file.
    • FILESIZE

      public static final DefaultValues FILESIZE
      Size of file (bytes).
    • MACHINENAME

      public static final DefaultValues MACHINENAME
      Name of the current machine.
    • USERID

      public static final DefaultValues USERID
      User ID in hex.
    • NUMPAGES

      public static final DefaultValues NUMPAGES
      Pages of a document.
    • FORMATNAME

      public static final DefaultValues FORMATNAME
      Format of structured document.
    • DBNAME

      public static final DefaultValues DBNAME
      Name of the database table of a document.
    • USERFULLNAME

      public static final DefaultValues USERFULLNAME
      Fullname of the current user.
    • DOC_FOLDERPATH

      public static final DefaultValues DOC_FOLDERPATH
      Document's folderpath.
  • Method Details

    • values

      public static DefaultValues[] 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 DefaultValues 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
    • toString

      public String toString()
      Returns the string representing this DefaultValue as used in a mask (in lower-case).
      Overrides:
      toString in class Enum<DefaultValues>
      Returns:
      string representation of thid DefaultValue
      See Also: