public enum Publicated extends Enum<Publicated>
| Enum Constant and Description |
|---|
ANY_TIME |
THIS_MONTH |
THIS_WEEK |
THIS_YEAR |
TODAY |
| Modifier and Type | Method and Description |
|---|---|
static Publicated |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Publicated[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Publicated TODAY
public static final Publicated THIS_WEEK
public static final Publicated THIS_MONTH
public static final Publicated THIS_YEAR
public static final Publicated ANY_TIME
public static Publicated[] values()
for (Publicated c : Publicated.values()) System.out.println(c);
public static Publicated 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 nullCopyright © 2021. All rights reserved.