public enum BookingFilePeriod extends Enum<BookingFilePeriod>
| Enum Constant and Description |
|---|
ALL |
DAY |
MONTH |
QUATER |
SEMESTER |
WEEK |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
marker(java.time.LocalDate date) |
static BookingFilePeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookingFilePeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static String |
yearMarker(java.time.LocalDate date) |
public static final BookingFilePeriod ALL
public static final BookingFilePeriod YEAR
public static final BookingFilePeriod SEMESTER
public static final BookingFilePeriod QUATER
public static final BookingFilePeriod MONTH
public static final BookingFilePeriod WEEK
public static final BookingFilePeriod DAY
public static BookingFilePeriod[] values()
for (BookingFilePeriod c : BookingFilePeriod.values()) System.out.println(c);
public static BookingFilePeriod 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 nullpublic abstract String marker(java.time.LocalDate date)
public static final String yearMarker(java.time.LocalDate date)
Copyright © 2018. All rights reserved.