public enum Period extends Enum<Period>
| Enum Constant and Description |
|---|
ANNEE
Année.
|
JOUR
Jour.
|
MOIS
Mois.
|
SEMAINE
Semaine.
|
TOUT
Tout.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getIconName() |
String |
getLabel() |
String |
getLinkLabel() |
String |
getMailCode() |
Range |
getRange() |
static Period |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Period |
valueOfByMailCode(String mailPeriod) |
static Period |
valueOfIgnoreCase(String period) |
static Period[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Period JOUR
public static final Period SEMAINE
public static final Period MOIS
public static final Period ANNEE
public static final Period TOUT
public static Period[] values()
for (Period c : Period.values()) System.out.println(c);
public static Period 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 String getCode()
public String getMailCode()
public String getLabel()
public String getLinkLabel()
public String getIconName()
public Range getRange()
Copyright © 2008–2019 Emeric Vernat. All rights reserved.