Enum CommentType
- All Implemented Interfaces:
Serializable,Comparable<CommentType>,java.lang.constant.Constable
Comment Types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCustomer comments are those comments that both compliance and the customer can readInternal comments are those comments only intended to be for compliance usersUsed when creating Notice Comments in Returns ConsoleA comment that has a POA Attachment on it -
Method Summary
Modifier and TypeMethodDescriptionintgetValue()static CommentTypevalueOf(int intValue) Returns the enum constant of this type with the specified name.static CommentTypeReturns 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.
-
Enum Constant Details
-
Internal
Internal comments are those comments only intended to be for compliance users -
Customer
Customer comments are those comments that both compliance and the customer can read -
POAAttachment
A comment that has a POA Attachment on it -
NoticeVoucher
Used when creating Notice Comments in Returns Console
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
intValue- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue()
-