Enum CometPublicationTree.Subject
- java.lang.Object
-
- java.lang.Enum<CometPublicationTree.Subject>
-
- com.priint.pubserver.comet.entity.publication.CometPublicationTree.Subject
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometPublicationTree.Subject>
- Enclosing class:
- CometPublicationTree
public static enum CometPublicationTree.Subject extends java.lang.Enum<CometPublicationTree.Subject>
The Enum Subject.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PUBLICATION_MASTERDOCSPublication master documents.PUBLICATION_ROOTTREEThe root tree statement (default version).PUBLICATION_ROOTTREE_MYSQLRoot tree for MySQL DataBase.PUBLICATION_ROOTTREE_SQLSERVERRoot tree for SQL Server DataBase.PUBLICATION_SUBTREEThe subtree statement (default version).PUBLICATION_SUBTREE_MYSQLSubtree for MySQL DataBase.PUBLICATION_SUBTREE_SQLSERVERSubtree for SQL Server DataBase.PUBLICATION_TREE_UNKNOWNThe publication tree unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFilename()Gets the filename.static CometPublicationTree.SubjectvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometPublicationTree.Subject[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLICATION_TREE_UNKNOWN
public static final CometPublicationTree.Subject PUBLICATION_TREE_UNKNOWN
The publication tree unknown.
-
PUBLICATION_ROOTTREE
public static final CometPublicationTree.Subject PUBLICATION_ROOTTREE
The root tree statement (default version).
-
PUBLICATION_SUBTREE
public static final CometPublicationTree.Subject PUBLICATION_SUBTREE
The subtree statement (default version).
-
PUBLICATION_ROOTTREE_MYSQL
public static final CometPublicationTree.Subject PUBLICATION_ROOTTREE_MYSQL
Root tree for MySQL DataBase.
-
PUBLICATION_SUBTREE_MYSQL
public static final CometPublicationTree.Subject PUBLICATION_SUBTREE_MYSQL
Subtree for MySQL DataBase.
-
PUBLICATION_ROOTTREE_SQLSERVER
public static final CometPublicationTree.Subject PUBLICATION_ROOTTREE_SQLSERVER
Root tree for SQL Server DataBase.
-
PUBLICATION_SUBTREE_SQLSERVER
public static final CometPublicationTree.Subject PUBLICATION_SUBTREE_SQLSERVER
Subtree for SQL Server DataBase.
-
PUBLICATION_MASTERDOCS
public static final CometPublicationTree.Subject PUBLICATION_MASTERDOCS
Publication master documents.
-
-
Method Detail
-
values
public static CometPublicationTree.Subject[] 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 (CometPublicationTree.Subject c : CometPublicationTree.Subject.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometPublicationTree.Subject 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 namejava.lang.NullPointerException- if the argument is null
-
getFilename
public java.lang.String getFilename()
Gets the filename.- Returns:
- the filename
-
-