Package org.robovm.apple.addressbook
Class ABMultiValue
- java.lang.Object
-
- org.robovm.rt.bro.NativeObject
-
- org.robovm.apple.corefoundation.CFType
-
- org.robovm.apple.addressbook.ABMultiValue
-
- All Implemented Interfaces:
java.lang.AutoCloseable
- Direct Known Subclasses:
ABMutableMultiValue
public class ABMultiValue extends CFType
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.robovm.apple.corefoundation.CFType
CFType.AsListMarshaler, CFType.CFTypePtr, CFType.Marshaler, CFType.NoRetainMarshaler
-
-
Field Summary
Fields Modifier and Type Field Description static int
InvalidIdentifier
-
Constructor Summary
Constructors Constructor Description ABMultiValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.List<CFType>
getAllValues()
Deprecated.Deprecated in iOS 9.0. use [NSArray enumerateObjectsUsingBlock:] with the labeled value property and collect the valueslong
getCount()
Deprecated.Deprecated in iOS 9.0. use NSArray.count with the labeled value propertyint
getIdentifier(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] identifier] with the labeled value propertyCFString
getLabel(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] label] with the labeled value propertyABPropertyType
getPropertyType()
Deprecated.Deprecated in iOS 9.0.CFType
getValue(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] value] with the labeled value propertylong
indexOf(int identifier)
Deprecated.Deprecated in iOS 9.0. use [NSArray indexOfObjectPassingTest:] with the labeled value property and find the identifierlong
indexOf(CFType value)
Deprecated.Deprecated in iOS 9.0. use [NSArray indexOfObjectPassingTest:] with the labeled value property and find the value-
Methods inherited from class org.robovm.apple.corefoundation.CFType
autorelease, close, dispose, dispose, doDispose, equalsTo, finalize, getAllocator, getDescription, getRetainCount, getTypeID, getTypeIDDescription, hash, makeCollectable, release, release, retain, retain, show, toString
-
-
-
-
Field Detail
-
InvalidIdentifier
public static final int InvalidIdentifier
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPropertyType
@Deprecated public ABPropertyType getPropertyType()
Deprecated.Deprecated in iOS 9.0.- Since:
- Available in iOS 2.0 and later.
-
getCount
@Deprecated public long getCount()
Deprecated.Deprecated in iOS 9.0. use NSArray.count with the labeled value property- Since:
- Available in iOS 2.0 and later.
-
getValue
@Deprecated public CFType getValue(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] value] with the labeled value property- Since:
- Available in iOS 2.0 and later.
-
getAllValues
@Deprecated public java.util.List<CFType> getAllValues()
Deprecated.Deprecated in iOS 9.0. use [NSArray enumerateObjectsUsingBlock:] with the labeled value property and collect the values- Since:
- Available in iOS 2.0 and later.
-
getLabel
@Deprecated public CFString getLabel(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] label] with the labeled value property- Since:
- Available in iOS 2.0 and later.
-
indexOf
@Deprecated public long indexOf(int identifier)
Deprecated.Deprecated in iOS 9.0. use [NSArray indexOfObjectPassingTest:] with the labeled value property and find the identifier- Since:
- Available in iOS 2.0 and later.
-
getIdentifier
@Deprecated public int getIdentifier(long index)
Deprecated.Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] identifier] with the labeled value property- Since:
- Available in iOS 2.0 and later.
-
indexOf
@Deprecated public long indexOf(CFType value)
Deprecated.Deprecated in iOS 9.0. use [NSArray indexOfObjectPassingTest:] with the labeled value property and find the value- Since:
- Available in iOS 2.0 and later.
-
-