com.box.boxjavalibv2.dao.BoxObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxjavalibv2 Show documentation
Show all versions of boxjavalibv2 Show documentation
The Java SDK for the Box API.
package com.box.boxjavalibv2.dao;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Map;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
public class BoxObject extends BoxBase implements IBoxParcelable {
private final Map extraMap = new BoxHashMap();
private final Map map = new BoxHashMap();
private static HashSet> primitiveWrapperSet = new HashSet>();
static {
primitiveWrapperSet.add(Boolean.class);
primitiveWrapperSet.add(Byte.class);
primitiveWrapperSet.add(Character.class);
primitiveWrapperSet.add(Short.class);
primitiveWrapperSet.add(Integer.class);
primitiveWrapperSet.add(Long.class);
primitiveWrapperSet.add(Double.class);
primitiveWrapperSet.add(Float.class);
}
public BoxObject() {
}
/**
* Instantiate the object from a map. Each entry in the map reflects to a field.
*
* @param map
*/
public BoxObject(Map map) {
cloneMap(this.map, map);
}
/**
* Whether the two objects are equal. This strictly compares all the fields in the two objects, if any fields are different this returns false.
*
* @param obj
* @return Whether the two objects are equal.
*/
@Override
public boolean equals(Object obj) {
if (obj == null || !(obj instanceof BoxObject)) {
return false;
}
if (this == obj) {
return true;
}
BoxObject bObj = (BoxObject) obj;
return new EqualsBuilder().append(map, bObj.map).append(extraMap, bObj.extraMap).isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(map).append(extraMap).toHashCode();
}
/**
* Copy constructor, this does deep copy for all the fields.
*
* @param obj
*/
public BoxObject(BoxObject obj) {
cloneMap(map, obj.map);
cloneMap(extraMap, obj.extraMap);
}
protected void put(String key, Object value) {
map.put(key, value);
}
public Object getValue(String key) {
return map.get(key);
}
/**
* Get extra data. This could be extra unknown data passed back from api responses, the data is put in a Map.
*
* @param key
* @return extra object
*/
public Object getExtraData(String key) {
return extraMap.get(key);
}
@JsonAnyGetter
protected Map extraProperties() {
return extraMap;
}
/**
* Use this method to check whether the object contains certain field at all. This helps differentiate the case when the field is not returned from server
* at all, or is returned from server but value is null. For the first case, this method returns false, the later case returns true.
*
* @return whether the field exists
*/
public boolean contains(String key) {
return map.containsKey(key) || extraMap.containsKey(key);
}
@JsonAnySetter
protected void handleUnknown(String key, Object value) {
// For unknown fields, only put in String or primitive wrappers to avoid potential serialization/deserialization problem.
if (value instanceof String || primitiveWrapperSet.contains(value.getClass())) {
extraMap.put(key, value);
}
}
@Override
public void writeToParcel(IBoxParcelWrapper parcelWrapper, int flags) {
parcelWrapper.writeMap(map);
parcelWrapper.writeMap(extraMap);
}
public BoxObject(IBoxParcelWrapper in) {
in.readMap(map);
in.readMap(extraMap);
}
/**
* Clone a map to another
*
* @param destination
* @param source
*/
@SuppressWarnings("unchecked")
private static void cloneMap(Map destination, Map source) {
for (Map.Entry entry : source.entrySet()) {
Object value = entry.getValue();
if (value instanceof BoxObject) {
try {
destination.put(entry.getKey(), value.getClass().getConstructor(value.getClass()).newInstance(value));
}
catch (Exception e) {
// Exception is swallowed.
}
}
else if (value instanceof ArrayList>) {
ArrayList