Enum AttributeType
- java.lang.Object
-
- java.lang.Enum<AttributeType>
-
- burp.api.montoya.http.message.responses.analysis.AttributeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AttributeType>
public enum AttributeType extends java.lang.Enum<AttributeType>
This enum defines various options that Burp can use to query attributes of HTTP responses.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AttributeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS_CODE
public static final AttributeType STATUS_CODE
-
ETAG_HEADER
public static final AttributeType ETAG_HEADER
-
LAST_MODIFIED_HEADER
public static final AttributeType LAST_MODIFIED_HEADER
-
CONTENT_TYPE
public static final AttributeType CONTENT_TYPE
-
CONTENT_LENGTH
public static final AttributeType CONTENT_LENGTH
-
COOKIE_NAMES
public static final AttributeType COOKIE_NAMES
-
TAG_NAMES
public static final AttributeType TAG_NAMES
-
TAG_IDS
public static final AttributeType TAG_IDS
-
DIV_IDS
public static final AttributeType DIV_IDS
-
BODY_CONTENT
public static final AttributeType BODY_CONTENT
-
VISIBLE_TEXT
public static final AttributeType VISIBLE_TEXT
-
WORD_COUNT
public static final AttributeType WORD_COUNT
-
VISIBLE_WORD_COUNT
public static final AttributeType VISIBLE_WORD_COUNT
-
COMMENTS
public static final AttributeType COMMENTS
-
INITIAL_CONTENT
public static final AttributeType INITIAL_CONTENT
-
CANONICAL_LINK
public static final AttributeType CANONICAL_LINK
-
PAGE_TITLE
public static final AttributeType PAGE_TITLE
-
FIRST_HEADER_TAG
public static final AttributeType FIRST_HEADER_TAG
-
HEADER_TAGS
public static final AttributeType HEADER_TAGS
-
ANCHOR_LABELS
public static final AttributeType ANCHOR_LABELS
-
INPUT_SUBMIT_LABELS
public static final AttributeType INPUT_SUBMIT_LABELS
-
BUTTON_SUBMIT_LABELS
public static final AttributeType BUTTON_SUBMIT_LABELS
-
CSS_CLASSES
public static final AttributeType CSS_CLASSES
-
LINE_COUNT
public static final AttributeType LINE_COUNT
-
LIMITED_BODY_CONTENT
public static final AttributeType LIMITED_BODY_CONTENT
-
OUTBOUND_EDGE_COUNT
public static final AttributeType OUTBOUND_EDGE_COUNT
-
OUTBOUND_EDGE_TAG_NAMES
public static final AttributeType OUTBOUND_EDGE_TAG_NAMES
-
INPUT_IMAGE_LABELS
public static final AttributeType INPUT_IMAGE_LABELS
-
CONTENT_LOCATION
public static final AttributeType CONTENT_LOCATION
-
LOCATION
public static final AttributeType LOCATION
-
NON_HIDDEN_FORM_INPUT_TYPES
public static final AttributeType NON_HIDDEN_FORM_INPUT_TYPES
-
-
Method Detail
-
values
public static AttributeType[] 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 (AttributeType c : AttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeType 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
-
-