Class ABMultiValue

  • All Implemented Interfaces:
    java.lang.AutoCloseable
    Direct Known Subclasses:
    ABMutableMultiValue

    public class ABMultiValue
    extends CFType
    • Constructor Detail

      • ABMultiValue

        public ABMultiValue()
    • 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.