Enum SiteSearch.DateRestriction
- java.lang.Object
-
- java.lang.Enum<SiteSearch.DateRestriction>
-
- com.atlassian.confluence.it.global.SiteSearch.DateRestriction
-
- All Implemented Interfaces:
Serializable
,Comparable<SiteSearch.DateRestriction>
- Enclosing class:
- SiteSearch
public static enum SiteSearch.DateRestriction extends Enum<SiteSearch.DateRestriction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LASTDAY
LASTMONTH
LASTSIXMONTHS
LASTTWOWEEKS
LASTTWOYEARS
LASTWEEK
LASTYEAR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SiteSearch.DateRestriction
valueOf(String name)
Returns the enum constant of this type with the specified name.static SiteSearch.DateRestriction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LASTDAY
public static final SiteSearch.DateRestriction LASTDAY
-
LASTTWOWEEKS
public static final SiteSearch.DateRestriction LASTTWOWEEKS
-
LASTWEEK
public static final SiteSearch.DateRestriction LASTWEEK
-
LASTMONTH
public static final SiteSearch.DateRestriction LASTMONTH
-
LASTSIXMONTHS
public static final SiteSearch.DateRestriction LASTSIXMONTHS
-
LASTYEAR
public static final SiteSearch.DateRestriction LASTYEAR
-
LASTTWOYEARS
public static final SiteSearch.DateRestriction LASTTWOYEARS
-
-
Method Detail
-
values
public static SiteSearch.DateRestriction[] 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 (SiteSearch.DateRestriction c : SiteSearch.DateRestriction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SiteSearch.DateRestriction 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
-
-