Class GenericDocumentType
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class GenericDocumentType implements Parcelable
Generic Document Type.
-
-
Constructor Summary
Constructors Constructor Description GenericDocumentType(Map<String, Object> source)GenericDocumentType(JSONObject json)GenericDocumentType(String name, String fullName, String normalizedName, Integer listIndex)
-
Method Summary
Modifier and Type Method Description final StringgetName()Local document type name. final StringgetFullName()Unique global document type name prefixed with the document types of all containing documents. final StringgetNormalizedName()Normalized global document type name. final IntegergetListIndex()A document can contain multiple fields of the same name, the property serves for storing natural order of such fields, null if multiple entries aren't allowed for this field. final JSONObjecttoJson(ToJsonConfiguration config)final GenericDocumentTypeclone()-
-
Method Detail
-
getFullName
final String getFullName()
Unique global document type name prefixed with the document types of all containing documents.
-
getNormalizedName
final String getNormalizedName()
Normalized global document type name. Common document types appearing as child documents in different places will often have the same normalized type name.
-
getListIndex
final Integer getListIndex()
A document can contain multiple fields of the same name, the property serves for storing natural order of such fields, null if multiple entries aren't allowed for this field.
-
toJson
final JSONObject toJson(ToJsonConfiguration config)
-
clone
final GenericDocumentType clone()
-
-
-
-