Enum FileRequestParameters.SearchFlag
- java.lang.Object
-
- java.lang.Enum<FileRequestParameters.SearchFlag>
-
- com.priint.pubserver.comet.bridge.FileRequestParameters.SearchFlag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FileRequestParameters.SearchFlag>
- Enclosing class:
- FileRequestParameters
public static enum FileRequestParameters.SearchFlag extends java.lang.Enum<FileRequestParameters.SearchFlag>
The enum Search flag.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description USE_BUILTBY_RECORD_STRINGIDThe Use builtby record stringid.USE_DEFAULTThe Use default.USE_FRAME_INFO_IDThe Use frame info id.USE_FRAME_LABELThe Use frame label.USE_FRAME_TYPEThe Use frame type.USE_FRAME_UIDThe Use frame uid.USE_IDThe Use id.USE_PLACEHOLDER_IDThe Use placeholder id.USE_PLACEHOLDER_INFO1The Use placeholder info 1.USE_PLACEHOLDER_INFO2The Use placeholder info 2.USE_RECORD_STRINGIDThe Use record stringid.USE_SCRIPT_TAGSThe Use script tags.USE_TEMPLATE_IDThe Use template id.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetConstantName()Gets constant name.FileRequestParameters.Parameter[]getParameters()Get parameters parameter [ ].intgetValue()Gets value.static FileRequestParameters.SearchFlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FileRequestParameters.SearchFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USE_DEFAULT
public static final FileRequestParameters.SearchFlag USE_DEFAULT
The Use default.
-
USE_TEMPLATE_ID
public static final FileRequestParameters.SearchFlag USE_TEMPLATE_ID
The Use template id.
-
USE_FRAME_LABEL
public static final FileRequestParameters.SearchFlag USE_FRAME_LABEL
The Use frame label.
-
USE_RECORD_STRINGID
public static final FileRequestParameters.SearchFlag USE_RECORD_STRINGID
The Use record stringid.
-
USE_BUILTBY_RECORD_STRINGID
public static final FileRequestParameters.SearchFlag USE_BUILTBY_RECORD_STRINGID
The Use builtby record stringid.
-
USE_PLACEHOLDER_ID
public static final FileRequestParameters.SearchFlag USE_PLACEHOLDER_ID
The Use placeholder id.
-
USE_FRAME_TYPE
public static final FileRequestParameters.SearchFlag USE_FRAME_TYPE
The Use frame type.
-
USE_SCRIPT_TAGS
public static final FileRequestParameters.SearchFlag USE_SCRIPT_TAGS
The Use script tags.
-
USE_FRAME_UID
public static final FileRequestParameters.SearchFlag USE_FRAME_UID
The Use frame uid.
-
USE_PLACEHOLDER_INFO1
public static final FileRequestParameters.SearchFlag USE_PLACEHOLDER_INFO1
The Use placeholder info 1.
-
USE_PLACEHOLDER_INFO2
public static final FileRequestParameters.SearchFlag USE_PLACEHOLDER_INFO2
The Use placeholder info 2.
-
USE_FRAME_INFO_ID
public static final FileRequestParameters.SearchFlag USE_FRAME_INFO_ID
The Use frame info id.
-
USE_ID
public static final FileRequestParameters.SearchFlag USE_ID
The Use id.
-
-
Method Detail
-
values
public static FileRequestParameters.SearchFlag[] 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 (FileRequestParameters.SearchFlag c : FileRequestParameters.SearchFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileRequestParameters.SearchFlag 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
-
getValue
public int getValue()
Gets value.- Returns:
- the value
-
getConstantName
public java.lang.String getConstantName()
Gets constant name.- Returns:
- the constant name
-
getParameters
public FileRequestParameters.Parameter[] getParameters()
Get parameters parameter [ ].- Returns:
- the parameter [ ]
-
-