Enum BasicLifecycleInformationDV.Status
- java.lang.Object
-
- java.lang.Enum<BasicLifecycleInformationDV.Status>
-
- org.gcube.application.geoportalcommon.shared.geoportal.project.BasicLifecycleInformationDV.Status
-
- All Implemented Interfaces:
Serializable,Comparable<BasicLifecycleInformationDV.Status>
- Enclosing class:
- BasicLifecycleInformationDV
public static enum BasicLifecycleInformationDV.Status extends Enum<BasicLifecycleInformationDV.Status>
The Enum Status.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Mar 21, 2022
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORNOT_SPECIFIEDOKWARNING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()Gets the label.static BasicLifecycleInformationDV.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static BasicLifecycleInformationDV.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK
public static final BasicLifecycleInformationDV.Status OK
-
ERROR
public static final BasicLifecycleInformationDV.Status ERROR
-
WARNING
public static final BasicLifecycleInformationDV.Status WARNING
-
NOT_SPECIFIED
public static final BasicLifecycleInformationDV.Status NOT_SPECIFIED
-
-
Method Detail
-
values
public static BasicLifecycleInformationDV.Status[] 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 (BasicLifecycleInformationDV.Status c : BasicLifecycleInformationDV.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BasicLifecycleInformationDV.Status 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
-
getLabel
public String getLabel()
Gets the label.- Returns:
- the label
-
-