java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.pspdfkit.annotations.stamps.PredefinedStampType |
List of predefined stamp types.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
PredefinedStampType | ACCEPTED | ||||||||||
PredefinedStampType | APPROVED | ||||||||||
PredefinedStampType | AS_IS | ||||||||||
PredefinedStampType | COMPLETED | ||||||||||
PredefinedStampType | CONFIDENTIAL | ||||||||||
PredefinedStampType | CUSTOM | ||||||||||
PredefinedStampType | DEPARTMENTAL | ||||||||||
PredefinedStampType | DRAFT | ||||||||||
PredefinedStampType | EXPERIMENTAL | ||||||||||
PredefinedStampType | EXPIRED | ||||||||||
PredefinedStampType | FINAL | ||||||||||
PredefinedStampType | FOR_COMMENT | ||||||||||
PredefinedStampType | FOR_PUBLIC_RELEASE | ||||||||||
PredefinedStampType | INFORMATION_ONLY | ||||||||||
PredefinedStampType | INITIAL_HERE | ||||||||||
PredefinedStampType | NOT_APPROVED | ||||||||||
PredefinedStampType | NOT_FOR_PUBLIC_RELEASE | ||||||||||
PredefinedStampType | PRELIMINARY_RESULTS | ||||||||||
PredefinedStampType | REJECTED | ||||||||||
PredefinedStampType | REVISED | ||||||||||
PredefinedStampType | SIGN_HERE | ||||||||||
PredefinedStampType | SOLD | ||||||||||
PredefinedStampType | TOP_SECRET | ||||||||||
PredefinedStampType | VOID | ||||||||||
PredefinedStampType | WITNESS |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static PredefinedStampType |
fromName(String name)
Returns corresponding predefined stamp type from a given name.
| ||||||||||
static PredefinedStampType |
fromStampType(StampType stampType)
Returns corresponding predefined stamp type from a given stamp type.
| ||||||||||
String |
getName()
Returns name of the predefined stamp type.
| ||||||||||
StampType |
getStampType()
Returns the stamp type this predefined stamp type is using.
| ||||||||||
int |
getTitleResId()
String resource id for localized stamp subject.
| ||||||||||
boolean |
isStandard()
Whether this is a standard stamp type.
| ||||||||||
static PredefinedStampType | valueOf(String name) | ||||||||||
final static PredefinedStampType[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns corresponding predefined stamp type from a given name.
name | Name of the predefined stamp type. |
---|
null
when no correspondence is found.
Returns corresponding predefined stamp type from a given stamp type.
stampType | The StampType to lookup the PredefinedStampType for. |
---|
null
when no correspondence is found.
Returns name of the predefined stamp type.
Returns the stamp type this predefined stamp type is using.
String resource id for localized stamp subject.
Whether this is a standard stamp type. True for all except CUSTOM
.