Enum DefaultValues
- java.lang.Object
- 
- java.lang.Enum<DefaultValues>
- 
- com.saperion.ngc.iform.field.defaultValue.DefaultValues
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DefaultValues>
 
 public enum DefaultValues extends java.lang.Enum<DefaultValues> Enumeration of available default value strings for IntelligentFields.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DBNAMEName of the database table of a document.DOC_FOLDERPATHDocument's folderpath.FILEDATEDate of last change on file.FILEFULLNAMEFilename and path.FILENAMEFilename without path.FILEPATHFile path.FILESIZESize of file (bytes).FILETEXTContent of file as text.FILETIMETime of last change on file.FORMATNAMEFormat of structured document.MACHINENAMEName of the current machine.NUMPAGESPages of a document.SYSDATESysDate system variable.SYSTIMESysTime system variable.USERFULLNAMEFullname of the current user.USERIDUser ID in hex.USERNAMEUserName system variable.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns the string representing this DefaultValue as used in a mask (in lower-case).static DefaultValuesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultValues[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SYSDATEpublic static final DefaultValues SYSDATE SysDate system variable.
 - 
SYSTIMEpublic static final DefaultValues SYSTIME SysTime system variable.
 - 
USERNAMEpublic static final DefaultValues USERNAME UserName system variable.
 - 
FILENAMEpublic static final DefaultValues FILENAME Filename without path.
 - 
FILEPATHpublic static final DefaultValues FILEPATH File path.
 - 
FILEFULLNAMEpublic static final DefaultValues FILEFULLNAME Filename and path.
 - 
FILEDATEpublic static final DefaultValues FILEDATE Date of last change on file.
 - 
FILETEXTpublic static final DefaultValues FILETEXT Content of file as text.
 - 
FILETIMEpublic static final DefaultValues FILETIME Time of last change on file.
 - 
FILESIZEpublic static final DefaultValues FILESIZE Size of file (bytes).
 - 
MACHINENAMEpublic static final DefaultValues MACHINENAME Name of the current machine.
 - 
USERIDpublic static final DefaultValues USERID User ID in hex.
 - 
NUMPAGESpublic static final DefaultValues NUMPAGES Pages of a document.
 - 
FORMATNAMEpublic static final DefaultValues FORMATNAME Format of structured document.
 - 
DBNAMEpublic static final DefaultValues DBNAME Name of the database table of a document.
 - 
USERFULLNAMEpublic static final DefaultValues USERFULLNAME Fullname of the current user.
 - 
DOC_FOLDERPATHpublic static final DefaultValues DOC_FOLDERPATH Document's folderpath.
 
- 
 - 
Method Detail- 
valuespublic static DefaultValues[] 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 (DefaultValues c : DefaultValues.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DefaultValues 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
 
 - 
toStringpublic java.lang.String toString() Returns the string representing this DefaultValue as used in a mask (in lower-case).- Overrides:
- toStringin class- java.lang.Enum<DefaultValues>
- Returns:
- string representation of thid DefaultValue
- See Also:
- Enum.toString()
 
 
- 
 
-