com.ibm.broker.plugin
Class MbJSON
- java.lang.Object
-
- com.ibm.broker.plugin.MbJSON
-
public class MbJSON extends java.lang.ObjectThis class contains constants for the JSON parser.
-
-
Field Summary
Fields Modifier and Type Field and Description static intARRAYThis is the specific type for a JSON array element.static java.lang.StringARRAY_ITEM_NAMEThis is the name of an array item element that is a child of an array element.static java.lang.StringDATA_ELEMENT_NAMEThis is the name of the data element that must be a child of the root element.static intOBJECTThis is the specific type for a JSON object element.static java.lang.StringPADDING_ELEMENT_NAMEThis is the name of the optional padding element that can be a child of the root element.static java.lang.StringPARSER_NAMEThis is the name of the parser as used bycreateElementAsLastChild()static java.lang.StringROOT_ELEMENT_NAMEThis is the name of the element at the root of the sub-tree owned by this parser.
-
Constructor Summary
Constructors Constructor and Description MbJSON()
-
-
-
Field Detail
-
PARSER_NAME
public static final java.lang.String PARSER_NAME
This is the name of the parser as used bycreateElementAsLastChild()- See Also:
- Constant Field Values
-
ROOT_ELEMENT_NAME
public static final java.lang.String ROOT_ELEMENT_NAME
This is the name of the element at the root of the sub-tree owned by this parser.- See Also:
- Constant Field Values
-
DATA_ELEMENT_NAME
public static final java.lang.String DATA_ELEMENT_NAME
This is the name of the data element that must be a child of the root element.- See Also:
- Constant Field Values
-
PADDING_ELEMENT_NAME
public static final java.lang.String PADDING_ELEMENT_NAME
This is the name of the optional padding element that can be a child of the root element.- See Also:
- Constant Field Values
-
ARRAY_ITEM_NAME
public static final java.lang.String ARRAY_ITEM_NAME
This is the name of an array item element that is a child of an array element.- See Also:
- Constant Field Values
-
ARRAY
public static final int ARRAY
This is the specific type for a JSON array element.- See Also:
- Constant Field Values
-
OBJECT
public static final int OBJECT
This is the specific type for a JSON object element.- See Also:
- Constant Field Values
-
-