Package fr.abes.cbs.notices
Enum TYPE_NOTICE
- java.lang.Object
-
- java.lang.Enum<TYPE_NOTICE>
-
- fr.abes.cbs.notices.TYPE_NOTICE
-
- All Implemented Interfaces:
Serializable,Comparable<TYPE_NOTICE>
public enum TYPE_NOTICE extends Enum<TYPE_NOTICE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTORITEBIBLIOGRAPHIQUECONCRETEEXEMPLAIRELOCALE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TYPE_NOTICEvalueOf(String name)Returns the enum constant of this type with the specified name.static TYPE_NOTICE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIBLIOGRAPHIQUE
public static final TYPE_NOTICE BIBLIOGRAPHIQUE
-
EXEMPLAIRE
public static final TYPE_NOTICE EXEMPLAIRE
-
LOCALE
public static final TYPE_NOTICE LOCALE
-
CONCRETE
public static final TYPE_NOTICE CONCRETE
-
AUTORITE
public static final TYPE_NOTICE AUTORITE
-
-
Method Detail
-
values
public static TYPE_NOTICE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TYPE_NOTICE c : TYPE_NOTICE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TYPE_NOTICE valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-