Package org.openurp.edu.clazz.model
Enum Material.ClazzMaterialStatus
- java.lang.Object
-
- java.lang.Enum<Material.ClazzMaterialStatus>
-
- org.openurp.edu.clazz.model.Material.ClazzMaterialStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Material.ClazzMaterialStatus>
- Enclosing class:
- Material
public static enum Material.ClazzMaterialStatus extends Enum<Material.ClazzMaterialStatus>
任务教材指定状态
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNEDDONT_ASSIGNEDPUBLISHED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFullName()static Material.ClazzMaterialStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Material.ClazzMaterialStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLISHED
public static final Material.ClazzMaterialStatus PUBLISHED
-
DONT_ASSIGNED
public static final Material.ClazzMaterialStatus DONT_ASSIGNED
-
ASSIGNED
public static final Material.ClazzMaterialStatus ASSIGNED
-
-
Method Detail
-
values
public static Material.ClazzMaterialStatus[] 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 (Material.ClazzMaterialStatus c : Material.ClazzMaterialStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Material.ClazzMaterialStatus 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
-
getFullName
public String getFullName()
-
-