Uses of Class
fiftyone.mobile.detection.entities.Property

Packages that use Property
fiftyone.mobile.detection   
fiftyone.mobile.detection.entities   
fiftyone.mobile.detection.factories   
 

Uses of Property in fiftyone.mobile.detection
 

Fields in fiftyone.mobile.detection with type parameters of type Property
 ReadonlyList<Property> Dataset.properties
           
 

Methods in fiftyone.mobile.detection that return Property
 Property Dataset.get(String propertyName)
           
 

Methods in fiftyone.mobile.detection that return types with arguments of type Property
 ReadonlyList<Property> Dataset.getProperties()
          A list of all properties the data set contains.
 

Methods in fiftyone.mobile.detection with parameters of type Property
 Values Match.getValues(Property property)
          Gets the values associated with the property name using the profiles found by the match.
 

Uses of Property in fiftyone.mobile.detection.entities
 

Fields in fiftyone.mobile.detection.entities declared as Property
private  Property[] Profile.properties
           
private  Property[] Component.properties
           
private  Property Values.property
          The property the list of values relates to.
private  Property Value.property
           
 

Methods in fiftyone.mobile.detection.entities that return Property
 Property[] Profile.getProperties()
          An array of properties associated with the profile.
 Property[] Component.getProperties()
          Array of properties the component relates to.
private  Property[] Profile.GetProperties()
          Returns an array of properties the profile relates to.
private  Property[] Component.GetProperties()
          Returns an array of the properties associated with the component.
 Property Value.getProperty()
          The property the value relates to.
 

Methods in fiftyone.mobile.detection.entities with parameters of type Property
 int Property.compareTo(Property other)
          Compares this property to another using the index field if they're in the same list, otherwise the name field.
 Values Profile.getValues(Property property)
          Gets the values associated with the property.
 

Constructors in fiftyone.mobile.detection.entities with parameters of type Property
Values(Property property, Collection<Value> values)
          Constructs a new instance of the values list.
 

Uses of Property in fiftyone.mobile.detection.factories
 

Methods in fiftyone.mobile.detection.factories that return Property
 Property PropertyFactory.create(Dataset dataSet, int index, BinaryReader reader)