MapValue | 
ArrayValue.addMap() | 
 Adds a new MapValue to the end of the array. 
 | 
MapValue | 
ArrayValue.addMap(int index) | 
 Inserts a new MapValue at the specified index. 
 | 
MapValue | 
FieldValue.asMap() | 
 Casts to MapValue. 
 | 
MapValue | 
MapValue.clone() | 
 Returns a deep copy of this object. 
 | 
MapValue | 
FieldDef.createMap() | 
 Creates an empty MapValue. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   boolean value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   byte[] value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   double value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   float value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   int value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   long value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   java.lang.String value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   java.sql.Timestamp value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.put(java.lang.String fieldName,
   FieldValue value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putEnum(java.lang.String fieldName,
       java.lang.String value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putFixed(java.lang.String fieldName,
        byte[] value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putJson(java.lang.String fieldName,
       java.io.Reader jsonReader) | 
 Puts arbitrary JSON into this map in the specified field. 
 | 
MapValue | 
MapValue.putJson(java.lang.String fieldName,
       java.lang.String jsonInput) | 
 Puts arbitrary JSON into this map in the specified field. 
 | 
MapValue | 
MapValue.putJsonNull(java.lang.String fieldName) | 
 Puts a JSON null value in the named field, silently overwriting
 existing values. 
 | 
MapValue | 
MapValue.putMap(java.lang.String fieldName) | 
 Puts a Map into the map. 
 | 
MapValue | 
RecordValue.putMap(int position) | 
 Inserts the field at the given position, or updates its value if the
 field exists already. 
 | 
MapValue | 
RecordValue.putMap(java.lang.String fieldName) | 
 Set a MapValue field, silently overwriting existing values. 
 | 
MapValue | 
MapValue.putNumber(java.lang.String fieldName,
         double value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putNumber(java.lang.String fieldName,
         float value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putNumber(java.lang.String fieldName,
         int value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putNumber(java.lang.String fieldName,
         long value) | 
 Set the named field. 
 | 
MapValue | 
MapValue.putNumber(java.lang.String fieldName,
         java.math.BigDecimal value) | 
 Set the named field. 
 | 
MapValue | 
ArrayValue.setMap(int index) | 
 Sets the value at the specified index with an empty MapValue,
 replacing any existing value at that index. 
 |