Uses of Class
net.anotheria.anodoc.data.Property
-
Packages that use Property Package Description net.anotheria.anodoc.data net.anotheria.anodoc.query2 net.anotheria.anodoc.util.mapper.pds Custom classes for describing action of deserialize for document properties.net.anotheria.asg.data -
-
Uses of Property in net.anotheria.anodoc.data
Subclasses of Property in net.anotheria.anodoc.data Modifier and Type Class Description classBooleanPropertyThis class represents a boolean property.classDoublePropertyThis class represents a double property (the mapping for double attributes).classFloatPropertyThis class represents a float property (the mapping for float attributes)classIntPropertyThis class represents an integer property (the mapping for int or integer attributes)classListPropertyThis property hold the list of Properties.classLongPropertyThis property represents a long value.classStringPropertyThis property represents a string value.classTextPropertyTextProperty is a derivative of a StringProperty which support full text search queries (if the underlying storage supports them too).Methods in net.anotheria.anodoc.data that return Property Modifier and Type Method Description PropertyProperty. cloneAs(java.lang.String newName)Creates a copy of this property with a new name.PropertyListProperty. get(int index)Returns the Property at position specified by index.PropertyDocument. getProperty(java.lang.String name)Returns the Property contained in this Document under the given name.Methods in net.anotheria.anodoc.data that return types with arguments of type Property Modifier and Type Method Description protected java.util.List<Property>Document. copyFromBooleanList(java.util.List<java.lang.Boolean> booleans)copyFromBooleanList.protected java.util.List<Property>Document. copyFromDoubleList(java.util.List<java.lang.Double> doubles)copyFromDoubleList.protected java.util.List<Property>Document. copyFromFloatList(java.util.List<java.lang.Float> floats)copyFromFloatList.protected java.util.List<Property>Document. copyFromIntegerList(java.util.List<java.lang.Integer> integers)copyFromIntegerList.protected java.util.List<Property>Document. copyFromLongList(java.util.List<java.lang.Long> longs)copyFromLongList.protected java.util.List<Property>Document. copyFromStringList(java.util.List<java.lang.String> strings)copyFromStringList.java.lang.Class<? extends Property>PropertyType. getClazz()java.util.List<Property>Document. getEmptyList()getEmptyList.java.util.List<Property>Document. getList(java.lang.String fieldId)Returns list of Property by fieldId.java.util.List<Property>ListProperty. getList()Returns the underlying list as java.util.Listjava.util.List<Property>Document. getProperties()Returns a list of all contained properties.Methods in net.anotheria.anodoc.data with parameters of type Property Modifier and Type Method Description voidListProperty. add(int index, Property p)Adds the property p to the current list at position index (equal to java.util.List.set(index, object)voidListProperty. add(Property p)Adds the property p to the current list.voidDocument. putProperty(Property p)Puts the given Property in the internal storage.voidListProperty. remove(Property p)Removes the given property from this list.voidDocument. removeProperty(Property p)removeProperty.Method parameters in net.anotheria.anodoc.data with type arguments of type Property Modifier and Type Method Description protected java.util.List<java.lang.Boolean>Document. copyToBooleanList(java.util.List<Property> properties)copyToBooleanList.protected java.util.List<java.lang.Double>Document. copyToDoubleList(java.util.List<Property> properties)copyToDoubleList.protected java.util.List<java.lang.Float>Document. copyToFloatList(java.util.List<Property> properties)copyToFloatList.protected java.util.List<java.lang.Integer>Document. copyToIntegerList(java.util.List<Property> properties)copyToIntegerList.protected java.util.List<java.lang.Long>Document. copyToLongList(java.util.List<Property> properties)copyToLongList.protected java.util.List<java.lang.String>Document. copyToStringList(java.util.List<Property> properties)copyToStringList.voidDocument. setList(java.lang.String fieldId, java.util.List<Property> value)setList.Constructor parameters in net.anotheria.anodoc.data with type arguments of type Property Constructor Description ListProperty(java.lang.String name, java.util.List<Property> aList)Creates a new ListProperty with the given name and the given list. -
Uses of Property in net.anotheria.anodoc.query2
Methods in net.anotheria.anodoc.query2 that return Property Modifier and Type Method Description PropertyQueryResultEntry. getMatchedProperty()Getter for the fieldmatchedProperty.Methods in net.anotheria.anodoc.query2 with parameters of type Property Modifier and Type Method Description voidQueryResultEntry. setMatchedProperty(Property matchedProperty)Setter for the fieldmatchedProperty. -
Uses of Property in net.anotheria.anodoc.util.mapper.pds
Methods in net.anotheria.anodoc.util.mapper.pds that return Property Modifier and Type Method Description PropertyPropertyDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)Constructor parameters in net.anotheria.anodoc.util.mapper.pds with type arguments of type Property Constructor Description PropertyDeserializer(java.lang.Class<Property> vc) -
Uses of Property in net.anotheria.asg.data
Methods in net.anotheria.asg.data that return Property Modifier and Type Method Description protected PropertyAbstractASGDocument. getInternalProperty(java.lang.String name)getInternalProperty.Methods in net.anotheria.asg.data with parameters of type Property Modifier and Type Method Description protected voidAbstractASGDocument. setInternalProperty(Property p)setInternalProperty.
-