You are here

isMultiValued

public boolean isMultiValued() returns true if the property is multi-valued.

Parameters

None

Returns

Returns a boolean. Returns true if the property is multi-valued, false if the property has a single value.

Example


    Property property = node.getProperty("cmis:objectTypeId");
    PropertyType propertyType = property.getType();
    Log.d(TAG, "type: " + propertyType.value());        
    Log.d(TAG, "value: " + property.getValue());
    Log.d(TAG, "isMultiValued: " + property.isMultiValued());

      

Would result in output such as the following: