public static enum CommentStatus.Value extends Enum<CommentStatus.Value>
Modifier and Type | Method and Description |
---|---|
String |
getStringValue() |
static CommentStatus.Value |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommentStatus.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentStatus.Value OPEN
public static final CommentStatus.Value RESOLVED
public static final CommentStatus.Value REOPENED
public static final CommentStatus.Value DANGLING
public static CommentStatus.Value[] values()
for (CommentStatus.Value c : CommentStatus.Value.values()) System.out.println(c);
public static CommentStatus.Value valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getStringValue()
Copyright © 2003–2015 Atlassian. All rights reserved.