public final enum

PredefinedStampType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.annotations.stamps.PredefinedStampType

Class Overview

List of predefined stamp types.

Summary

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
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PredefinedStampType ACCEPTED

public static final PredefinedStampType APPROVED

public static final PredefinedStampType AS_IS

public static final PredefinedStampType COMPLETED

public static final PredefinedStampType CONFIDENTIAL

public static final PredefinedStampType CUSTOM

public static final PredefinedStampType DEPARTMENTAL

public static final PredefinedStampType DRAFT

public static final PredefinedStampType EXPERIMENTAL

public static final PredefinedStampType EXPIRED

public static final PredefinedStampType FINAL

public static final PredefinedStampType FOR_COMMENT

public static final PredefinedStampType FOR_PUBLIC_RELEASE

public static final PredefinedStampType INFORMATION_ONLY

public static final PredefinedStampType INITIAL_HERE

public static final PredefinedStampType NOT_APPROVED

public static final PredefinedStampType NOT_FOR_PUBLIC_RELEASE

public static final PredefinedStampType PRELIMINARY_RESULTS

public static final PredefinedStampType REJECTED

public static final PredefinedStampType REVISED

public static final PredefinedStampType SIGN_HERE

public static final PredefinedStampType SOLD

public static final PredefinedStampType TOP_SECRET

public static final PredefinedStampType VOID

public static final PredefinedStampType WITNESS

Public Methods

public static PredefinedStampType fromName (String name)

Returns corresponding predefined stamp type from a given name.

Parameters
name Name of the predefined stamp type.
Returns
  • Corresponding predefined stamp type or null when no correspondence is found.

public static PredefinedStampType fromStampType (StampType stampType)

Returns corresponding predefined stamp type from a given stamp type.

Parameters
stampType The StampType to lookup the PredefinedStampType for.
Returns
  • Corresponding predefined stamp type or null when no correspondence is found.

public String getName ()

Returns name of the predefined stamp type.

Returns
  • Name of the predefined stamp type.

public StampType getStampType ()

Returns the stamp type this predefined stamp type is using.

Returns
  • The stamp type this predefined stamp type is using.

public int getTitleResId ()

String resource id for localized stamp subject.

Returns
  • Localized stamp subject res id.

public boolean isStandard ()

Whether this is a standard stamp type. True for all except CUSTOM.

public static PredefinedStampType valueOf (String name)

public static final PredefinedStampType[] values ()