Enum DBQueryBuilderJoinCommandType
- java.lang.Object
-
- java.lang.Enum<DBQueryBuilderJoinCommandType>
-
- org.alfresco.repo.search.impl.querymodel.impl.db.DBQueryBuilderJoinCommandType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DBQueryBuilderJoinCommandType>
public enum DBQueryBuilderJoinCommandType extends java.lang.Enum<DBQueryBuilderJoinCommandType>
- Author:
- Andy
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASPECTCONTENT_MIMETYPECONTENT_URLMULTI_VALUED_PROPERYNODEPARENTPROPERTY
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleanisMultiValued()static DBQueryBuilderJoinCommandTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DBQueryBuilderJoinCommandType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NODE
public static final DBQueryBuilderJoinCommandType NODE
-
ASPECT
public static final DBQueryBuilderJoinCommandType ASPECT
-
PROPERTY
public static final DBQueryBuilderJoinCommandType PROPERTY
-
CONTENT_MIMETYPE
public static final DBQueryBuilderJoinCommandType CONTENT_MIMETYPE
-
CONTENT_URL
public static final DBQueryBuilderJoinCommandType CONTENT_URL
-
PARENT
public static final DBQueryBuilderJoinCommandType PARENT
-
MULTI_VALUED_PROPERY
public static final DBQueryBuilderJoinCommandType MULTI_VALUED_PROPERY
-
-
Method Detail
-
values
public static DBQueryBuilderJoinCommandType[] 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 (DBQueryBuilderJoinCommandType c : DBQueryBuilderJoinCommandType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DBQueryBuilderJoinCommandType 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
-
isMultiValued
public abstract boolean isMultiValued()
-
-