public enum CommentType extends java.lang.Enum<CommentType>
| Enum Constant and Description |
|---|
Customer
Customer comments are those comments that both compliance and the customer can read
|
Internal
Internal comments are those comments only intended to be for compliance users
|
POAAttachment
A comment that has a POA Attachment on it
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static CommentType |
valueOf(int intValue) |
static CommentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentType Internal
public static final CommentType Customer
public static final CommentType POAAttachment
public static CommentType[] values()
for (CommentType c : CommentType.values()) System.out.println(c);
public static CommentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static CommentType valueOf(int intValue)
public int getValue()