Package com.facilita.fc.web
Enum SearchFlags
- java.lang.Object
-
- java.lang.Enum<SearchFlags>
-
- com.facilita.fc.web.SearchFlags
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SearchFlags>
public enum SearchFlags extends java.lang.Enum<SearchFlags>
Used for searching for data with Correlation Rules. Signifies if the search should be within the response body (html), the response header(s) or both.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SEARCH_IN_BODY
Search in the HMTML body text only.SEARCH_IN_BOTH
Search in the HTML body text.SEARCH_IN_HEADERS
Search in the header(s) text only.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchFlags
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SearchFlags[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEARCH_IN_BODY
public static final SearchFlags SEARCH_IN_BODY
Search in the HMTML body text only.
-
SEARCH_IN_HEADERS
public static final SearchFlags SEARCH_IN_HEADERS
Search in the header(s) text only.
-
SEARCH_IN_BOTH
public static final SearchFlags SEARCH_IN_BOTH
Search in the HTML body text. If not found, then search in the header(s) text.
-
-
Method Detail
-
values
public static SearchFlags[] 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 (SearchFlags c : SearchFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchFlags 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
-
-