Package com.gitlab.pdftk_java
Enum TK_Session.ArgState
- java.lang.Object
-
- java.lang.Enum<TK_Session.ArgState>
-
- com.gitlab.pdftk_java.TK_Session.ArgState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TK_Session.ArgState>
- Enclosing class:
- TK_Session
private static enum TK_Session.ArgState extends java.lang.Enum<TK_Session.ArgState>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
ArgState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TK_Session.ArgState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TK_Session.ArgState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
input_files_e
public static final TK_Session.ArgState input_files_e
-
input_pw_e
public static final TK_Session.ArgState input_pw_e
-
page_seq_e
public static final TK_Session.ArgState page_seq_e
-
form_data_filename_e
public static final TK_Session.ArgState form_data_filename_e
-
attach_file_filename_e
public static final TK_Session.ArgState attach_file_filename_e
-
attach_file_pagenum_e
public static final TK_Session.ArgState attach_file_pagenum_e
-
attach_file_relation_e
public static final TK_Session.ArgState attach_file_relation_e
-
update_info_filename_e
public static final TK_Session.ArgState update_info_filename_e
-
update_xmp_filename_e
public static final TK_Session.ArgState update_xmp_filename_e
-
output_e
public static final TK_Session.ArgState output_e
-
output_filename_e
public static final TK_Session.ArgState output_filename_e
-
output_args_e
public static final TK_Session.ArgState output_args_e
-
output_owner_pw_e
public static final TK_Session.ArgState output_owner_pw_e
-
output_user_pw_e
public static final TK_Session.ArgState output_user_pw_e
-
output_user_perms_e
public static final TK_Session.ArgState output_user_perms_e
-
background_filename_e
public static final TK_Session.ArgState background_filename_e
-
stamp_filename_e
public static final TK_Session.ArgState stamp_filename_e
-
replacement_font_filename_e
public static final TK_Session.ArgState replacement_font_filename_e
-
done_e
public static final TK_Session.ArgState done_e
-
-
Method Detail
-
values
public static TK_Session.ArgState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TK_Session.ArgState c : TK_Session.ArgState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TK_Session.ArgState valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-