Package com.saperion.settings
Enum SystemFileKind
- java.lang.Object
- 
- java.lang.Enum<SystemFileKind>
- 
- com.saperion.settings.SystemFileKind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SystemFileKind>
 
 public enum SystemFileKind extends java.lang.Enum<SystemFileKind> This enumeration holds the types of system files in a Saperion system.- Author:
- jsc
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ANYThis enumeration member represents any type of File.ANY_NOSYSThis enumeration member represents any type of File but excludes system wide files.DEFSThis enumeration member represents document definitions (ddc).DEFS_NOSYSThis enumeration member represents document definitions (ddc) but excludes system wide files.MACROSThis enumeration member represents saperion macros (bas).MACROS_NOSYSThis enumeration member represents saperion macros (bas) but excludes system wide files.MASK_XMLThis enumeration member represents forms in xml format.MASKSThis enumeration member represents forms (qbe).MASKS_NOSYSThis enumeration member represents forms (qbe) but excludes system wide files.WFPROCESSThis enumeration member represents workflow processes (dfd).WFPROCESS_NOSYSThis enumeration member represents workflow processes (dfd) but excludes system wide files.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetId()static SystemFileKindgetInstance(int id)Gets the instance matching to the id.booleangetWithDefault()static SystemFileKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SystemFileKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DEFSpublic static final SystemFileKind DEFS This enumeration member represents document definitions (ddc).
 - 
MASKSpublic static final SystemFileKind MASKS This enumeration member represents forms (qbe).
 - 
MACROSpublic static final SystemFileKind MACROS This enumeration member represents saperion macros (bas).
 - 
WFPROCESSpublic static final SystemFileKind WFPROCESS This enumeration member represents workflow processes (dfd).
 - 
ANYpublic static final SystemFileKind ANY This enumeration member represents any type of File.
 - 
MASK_XMLpublic static final SystemFileKind MASK_XML This enumeration member represents forms in xml format.
 - 
DEFS_NOSYSpublic static final SystemFileKind DEFS_NOSYS This enumeration member represents document definitions (ddc) but excludes system wide files.
 - 
MASKS_NOSYSpublic static final SystemFileKind MASKS_NOSYS This enumeration member represents forms (qbe) but excludes system wide files.
 - 
MACROS_NOSYSpublic static final SystemFileKind MACROS_NOSYS This enumeration member represents saperion macros (bas) but excludes system wide files.
 - 
WFPROCESS_NOSYSpublic static final SystemFileKind WFPROCESS_NOSYS This enumeration member represents workflow processes (dfd) but excludes system wide files.
 - 
ANY_NOSYSpublic static final SystemFileKind ANY_NOSYS This enumeration member represents any type of File but excludes system wide files.
 
- 
 - 
Method Detail- 
valuespublic static SystemFileKind[] 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 (SystemFileKind c : SystemFileKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SystemFileKind 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
 
 - 
getIdpublic int getId() - Returns:
- The internal backend id.
 
 - 
getWithDefaultpublic boolean getWithDefault() - Returns:
- get files include default tenant
 
 - 
getInstancepublic static SystemFileKind getInstance(int id) Gets the instance matching to the id.- Parameters:
- id- The internal backend id.
- Returns:
- The machting instance.
 
 
- 
 
-