public static enum PrintOptions.PrintView extends java.lang.Enum<PrintOptions.PrintView>
| Modifier and Type | Method and Description | 
|---|---|
static PrintOptions.PrintView | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PrintOptions.PrintView[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PrintOptions.PrintView DAY
public static final PrintOptions.PrintView WEEK
public static final PrintOptions.PrintView MONTH
public static final PrintOptions.PrintView AGENDA
public static PrintOptions.PrintView[] values()
for (PrintOptions.PrintView c : PrintOptions.PrintView.values()) System.out.println(c);
public static PrintOptions.PrintView valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2021. All Rights Reserved.