public enum PageOrderBy extends Enum<PageOrderBy>
Enum Constant and Description |
---|
date |
id |
include |
menu_order |
relevance |
slug |
title |
Modifier and Type | Method and Description |
---|---|
static PageOrderBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageOrderBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageOrderBy date
public static final PageOrderBy relevance
public static final PageOrderBy id
public static final PageOrderBy include
public static final PageOrderBy title
public static final PageOrderBy slug
public static final PageOrderBy menu_order
public static PageOrderBy[] values()
for (PageOrderBy c : PageOrderBy.values()) System.out.println(c);
public static PageOrderBy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullApache Camel