Enum Project.InscriptionStatus
- java.lang.Object
-
- java.lang.Enum<Project.InscriptionStatus>
-
- org.ametys.plugins.workspaces.project.objects.Project.InscriptionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<Project.InscriptionStatus>
- Enclosing class:
- Project
public static enum Project.InscriptionStatus extends Enum<Project.InscriptionStatus>
The inscription status of the project
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Project.InscriptionStatus
createsFromString(String status)
Converts a string to an InscriptionString
toString()
static Project.InscriptionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Project.InscriptionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN
public static final Project.InscriptionStatus OPEN
Inscriptions are opened to anyone
-
MODERATED
public static final Project.InscriptionStatus MODERATED
Inscriptions are moderated
-
PRIVATE
public static final Project.InscriptionStatus PRIVATE
Inscriptions are private
-
-
Method Detail
-
values
public static Project.InscriptionStatus[] 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 (Project.InscriptionStatus c : Project.InscriptionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Project.InscriptionStatus 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<Project.InscriptionStatus>
-
createsFromString
public static Project.InscriptionStatus createsFromString(String status)
Converts a string to an Inscription- Parameters:
status
- The status to convert- Returns:
- The status corresponding to the string or null if unknown
-
-