public enum ReplyType extends Enum<ReplyType>
Enumerates the kinds of the relationships (the "reply type") between the annotation and one specified by InReplyTo.
Enum Constant and Description |
---|
Group
The annotation is grouped with the annotation specified by InReplyTo.
|
Reply
The annotation is considered a reply to the annotation specified by InReplyTo.
|
Undefined
Undefined relationship.
|
Modifier and Type | Method and Description |
---|---|
static ReplyType |
getByValue(int value) |
int |
getValue() |
static ReplyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplyType Undefined
Undefined relationship.
public static final ReplyType Reply
The annotation is considered a reply to the annotation specified by InReplyTo. Viewer applications should not display replies to an annotation individually but together in the form of threaded comments.
public static final ReplyType Group
The annotation is grouped with the annotation specified by InReplyTo.
public static ReplyType[] values()
for (ReplyType c : ReplyType.values()) System.out.println(c);
public static ReplyType 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 int getValue()
public static ReplyType getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.