public enum NombreDeJours extends Enum<NombreDeJours>
Enum Constant and Description |
---|
CENT |
CENT_DIX |
CENT_VINGT |
CINQUANTE |
NONRENSEIGNE |
QUARANTE |
QUARANTE_CINQ |
QUATRE_VINGT |
QUATRE_VINGT_DIX |
QUINZE |
SOIXANTE |
SOIXANTE_DIX |
TRENTE |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static NombreDeJours |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NombreDeJours[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NombreDeJours NONRENSEIGNE
public static final NombreDeJours QUINZE
public static final NombreDeJours TRENTE
public static final NombreDeJours QUARANTE
public static final NombreDeJours QUARANTE_CINQ
public static final NombreDeJours CINQUANTE
public static final NombreDeJours SOIXANTE
public static final NombreDeJours SOIXANTE_DIX
public static final NombreDeJours QUATRE_VINGT
public static final NombreDeJours QUATRE_VINGT_DIX
public static final NombreDeJours CENT
public static final NombreDeJours CENT_DIX
public static final NombreDeJours CENT_VINGT
public static NombreDeJours[] values()
for (NombreDeJours c : NombreDeJours.values()) System.out.println(c);
public static NombreDeJours 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 final String value()
Copyright © 2016. All rights reserved.