Class GenericDocument.Type
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class GenericDocument.Type implements Parcelable
Document type
-
-
Constructor Summary
Constructors Constructor Description GenericDocument.Type(String name, String fullName, String normalizedName, Integer listIndex)
-
Method Summary
Modifier and Type Method Description final String
getName()
Local document type name final String
getFullName()
Unique global document type name prefixed with the document types of all containing documents final String
getNormalizedName()
Normalized global document type name. final Integer
getListIndex()
A document contain multiple children of the same name, the property serves for storing natural order of such children, null if multiple entries aren't allowed for this child -
-
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 contain multiple children of the same name, the property serves for storing natural order of such children, null if multiple entries aren't allowed for this child
-
-
-
-