public enum CommentThreadDiffAnchorState extends Enum<CommentThreadDiffAnchorState>
CommentSearchRequest.getAnchorState()| Enum Constant and Description |
|---|
ACTIVE
Only Active comments.
|
ALL
Both Active and Outdated comments.
|
ORPHANED
Only Orphaned comments.
|
| Modifier and Type | Method and Description |
|---|---|
static CommentThreadDiffAnchorState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommentThreadDiffAnchorState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentThreadDiffAnchorState ACTIVE
public static final CommentThreadDiffAnchorState ORPHANED
public static final CommentThreadDiffAnchorState ALL
public static CommentThreadDiffAnchorState[] values()
for (CommentThreadDiffAnchorState c : CommentThreadDiffAnchorState.values()) System.out.println(c);
public static CommentThreadDiffAnchorState 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 nullCopyright © 2019 Atlassian. All rights reserved.