Enum ResultBlock.Result.Section.BodyFormat
- java.lang.Object
-
- java.lang.Enum<ResultBlock.Result.Section.BodyFormat>
-
- ca.gc.cyber.ops.assemblyline.java.client.model.ResultBlock.Result.Section.BodyFormat
-
- All Implemented Interfaces:
Serializable,Comparable<ResultBlock.Result.Section.BodyFormat>
- Enclosing class:
- ResultBlock.Result.Section
public static enum ResultBlock.Result.Section.BodyFormat extends Enum<ResultBlock.Result.Section.BodyFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GRAPH_DATAJSONKEY_VALUEMEMORY_DUMPPROCESS_TREETABLETEXTURL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResultBlock.Result.Section.BodyFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static ResultBlock.Result.Section.BodyFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT
public static final ResultBlock.Result.Section.BodyFormat TEXT
-
MEMORY_DUMP
public static final ResultBlock.Result.Section.BodyFormat MEMORY_DUMP
-
GRAPH_DATA
public static final ResultBlock.Result.Section.BodyFormat GRAPH_DATA
-
URL
public static final ResultBlock.Result.Section.BodyFormat URL
-
JSON
public static final ResultBlock.Result.Section.BodyFormat JSON
-
KEY_VALUE
public static final ResultBlock.Result.Section.BodyFormat KEY_VALUE
-
PROCESS_TREE
public static final ResultBlock.Result.Section.BodyFormat PROCESS_TREE
-
TABLE
public static final ResultBlock.Result.Section.BodyFormat TABLE
-
-
Method Detail
-
values
public static ResultBlock.Result.Section.BodyFormat[] 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 (ResultBlock.Result.Section.BodyFormat c : ResultBlock.Result.Section.BodyFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultBlock.Result.Section.BodyFormat valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-