public final enum

InclusionCriteria

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.confluence.macro.query.InclusionCriteria

Class Overview

Match tokens that describe what search constraint should be applied to a parsed SearchQuery.

Summary

Enum Values
InclusionCriteria  ALL  Associated token must match. 
InclusionCriteria  ANY  Associated token should match if possible. 
InclusionCriteria  NONE  Associated token must not match. 
Public Methods
static InclusionCriteria get(String token)
Returns the proper InclusionCriteria value corresponding to the specified token.
static InclusionCriteria valueOf(String name)
final static InclusionCriteria[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final InclusionCriteria ALL

Associated token must match.

public static final InclusionCriteria ANY

Associated token should match if possible.

public static final InclusionCriteria NONE

Associated token must not match.

Public Methods

public static InclusionCriteria get (String token)

Returns the proper InclusionCriteria value corresponding to the specified token. Returns null if no matching value is found.

Parameters
token the token to get the value for
Returns
  • the value of the token, or null if none is found

public static InclusionCriteria valueOf (String name)

public static final InclusionCriteria[] values ()