Package org.ametys.cms.search.query
Enum CommentQuery.CommentInclusion
- java.lang.Object
-
- java.lang.Enum<CommentQuery.CommentInclusion>
-
- org.ametys.cms.search.query.CommentQuery.CommentInclusion
-
- All Implemented Interfaces:
Serializable
,Comparable<CommentQuery.CommentInclusion>
- Enclosing class:
- CommentQuery
public static enum CommentQuery.CommentInclusion extends Enum<CommentQuery.CommentInclusion>
The type (validated, non validated or both) of comments to include forCommentQuery
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NON_VALIDATED
Request only contents with non validated-commentsVALIDATED
Request only contents with validated commentsVALIDATED_AND_NON_VALIDATED
Request only contents with both validated and non-validated comments
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommentQuery.CommentInclusion
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommentQuery.CommentInclusion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATED_AND_NON_VALIDATED
public static final CommentQuery.CommentInclusion VALIDATED_AND_NON_VALIDATED
Request only contents with both validated and non-validated comments
-
VALIDATED
public static final CommentQuery.CommentInclusion VALIDATED
Request only contents with validated comments
-
NON_VALIDATED
public static final CommentQuery.CommentInclusion NON_VALIDATED
Request only contents with non validated-comments
-
-
Method Detail
-
values
public static CommentQuery.CommentInclusion[] 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 (CommentQuery.CommentInclusion c : CommentQuery.CommentInclusion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommentQuery.CommentInclusion valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-