Class ABMultiValue

All Implemented Interfaces:
AutoCloseable
Direct Known Subclasses:
ABMutableMultiValue

public class ABMultiValue
extends CFType
  • Field Details

  • Constructor Details

    • ABMultiValue

      public ABMultiValue()
  • Method Details

    • getPropertyType

      @Deprecated public ABPropertyType getPropertyType()
      Deprecated.
      Deprecated in iOS 9.0.
    • getCount

      @Deprecated public long getCount()
      Deprecated.
      Deprecated in iOS 9.0. use NSArray.count with the labeled value property
    • getValue

      @Deprecated public CFType getValue​(long index)
      Deprecated.
      Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] value] with the labeled value property
    • getAllValues

      @Deprecated public List<CFType> getAllValues()
      Deprecated.
      Deprecated in iOS 9.0. use [NSArray enumerateObjectsUsingBlock:] with the labeled value property and collect the values
    • getLabel

      @Deprecated public CFString getLabel​(long index)
      Deprecated.
      Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] label] with the labeled value property
    • 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
    • getIdentifier

      @Deprecated public int getIdentifier​(long index)
      Deprecated.
      Deprecated in iOS 9.0. use [[NSArray objectAtIndex:] identifier] with the labeled value property
    • 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