|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Priority> test.de.smartics.properties.api.config.Priority
public enum Priority
The valid priority values for user stories.
Enum Constant Summary | |
---|---|
DISPENSABLE The story is not necessary to be part of the release, but may be included if resources are available. |
|
NICE_TO_HAVE The story is a nice-to-have for the final product, but not relevant for the release. |
|
POLISHING The story would add to the user experience of the user, but is not relevant for the release. |
|
REQUIRED The story is required for the final product. |
|
VERY_IMPORTANT The story is very important for the final product. |
Method Summary | |
---|---|
Priority |
fromString(String valueAsString) |
String |
getId() Returns the identifier of the priority. |
int |
getPriorityValue() Returns the value of the priority. |
List<Priority> |
getValues() |
boolean |
isCommented() |
String |
toString() |
String |
toString(Locale locale) |
static Priority |
valueOf(String name) Returns the enum constant of this type with the specified name. |
static Priority[] |
values() Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Priority REQUIRED
public static final Priority VERY_IMPORTANT
public static final Priority NICE_TO_HAVE
public static final Priority POLISHING
public static final Priority DISPENSABLE
The priority is available to keep stories in the product backlog for further references.
Method Detail |
---|
public static Priority[] values()
for (Priority c : Priority.values()) System.out.println(c);
public static Priority valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
public String getId()
public int getPriorityValue()
public boolean isCommented()
isCommented
in interface
de.smartics.properties.api.core.domain.PropertyValueRange<Priority>
PropertyValueRange.isCommented()
public List<Priority> getValues()
getValues
in interface
de.smartics.properties.api.core.domain.PropertyValueRange<Priority>
de.smartics.properties.core.PropertyValueRange#getValues()
public Priority fromString(String valueAsString) throws IllegalArgumentException
fromString
in interface
de.smartics.properties.api.core.domain.PropertyValueRange<Priority>
IllegalArgumentException
de.smartics.properties.core.PropertyValueRange#fromString(java.lang.String)
public String toString(Locale locale)
toString
in interface
de.smartics.properties.api.core.domain.PropertyValueRange<Priority>
de.smartics.properties.core.PropertyValueRange#toString(java.util.Locale)
public String toString()
toString
in interface
de.smartics.properties.api.core.domain.PropertyValueRange<Priority>
toString
in class
Enum<Priority>
Enum.toString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |