All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Scanner

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Scanner

public class Scanner
extends NativeObject
This class wraps the Objective-C class NSScanner.


Constructor Index

 o Scanner()
This default constructor is equivalent to Objective-C's [[NSScanner alloc] init].
 o Scanner(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o Scanner(String)
This constructor has the same effect as calling - initWithString: on a newly allocated object.

Method Index

 o caseSensitive()
A wrapper for the - caseSensitive Objective-C instance method.
 o charactersToBeSkipped()
A wrapper for the - charactersToBeSkipped Objective-C instance method.
 o isAtEnd()
A wrapper for the - isAtEnd Objective-C instance method.
 o locale()
A wrapper for the - locale Objective-C instance method.
 o localizedScannerWithString(String)
A wrapper for the + localizedScannerWithString: Objective-C class method.
 o scanLocation()
A wrapper for the - scanLocation Objective-C instance method.
 o scannerWithString(String)
A wrapper for the + scannerWithString: Objective-C class method.
 o setCaseSensitive(boolean)
A wrapper for the - setCaseSensitive: Objective-C instance method.
 o setCharactersToBeSkipped(CharacterSet)
A wrapper for the - setCharactersToBeSkipped: Objective-C instance method.
 o setLocale(Dictionary)
A wrapper for the - setLocale: Objective-C instance method.
 o setScanLocation(int)
A wrapper for the - setScanLocation: Objective-C instance method.
 o string()
A wrapper for the - string Objective-C instance method.

Constructors

 o Scanner
 protected Scanner(boolean shouldAllocate,
                   int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Scanner
 public Scanner()
This default constructor is equivalent to Objective-C's [[NSScanner alloc] init].

 o Scanner
 public Scanner(String string)
This constructor has the same effect as calling - initWithString: on a newly allocated object.

Methods

 o string
 public native String string()
A wrapper for the - string Objective-C instance method.

 o scanLocation
 public native int scanLocation()
A wrapper for the - scanLocation Objective-C instance method.

 o setScanLocation
 public native void setScanLocation(int pos)
A wrapper for the - setScanLocation: Objective-C instance method.

 o setCharactersToBeSkipped
 public native void setCharactersToBeSkipped(CharacterSet set)
A wrapper for the - setCharactersToBeSkipped: Objective-C instance method.

 o setCaseSensitive
 public native void setCaseSensitive(boolean flag)
A wrapper for the - setCaseSensitive: Objective-C instance method.

 o setLocale
 public native void setLocale(Dictionary dict)
A wrapper for the - setLocale: Objective-C instance method.

 o charactersToBeSkipped
 public native CharacterSet charactersToBeSkipped()
A wrapper for the - charactersToBeSkipped Objective-C instance method.

 o caseSensitive
 public native boolean caseSensitive()
A wrapper for the - caseSensitive Objective-C instance method.

 o locale
 public native Dictionary locale()
A wrapper for the - locale Objective-C instance method.

 o isAtEnd
 public native boolean isAtEnd()
A wrapper for the - isAtEnd Objective-C instance method.

 o scannerWithString
 public static native Object scannerWithString(String string)
A wrapper for the + scannerWithString: Objective-C class method.

 o localizedScannerWithString
 public static native Object localizedScannerWithString(String string)
A wrapper for the + localizedScannerWithString: Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index