org.rococoa.cocoa.foundation.categories
Interface NSExtendedScanner

All Known Implementing Classes:
NSScanner

public interface NSExtendedScanner

This file was autogenerated by JNAerator,
a tool written by Olivier Chafik that uses a few opensource projects..
For help, please visit NativeLibs4Java, Rococoa, or JNA.


Nested Class Summary
static interface NSExtendedScanner._static_
           
 
Method Summary
 boolean caseSensitive()
           
 NSCharacterSet charactersToBeSkipped()
           
 NSScanner initWithString(NSString string)
           
 boolean isAtEnd()
           
 NSObject locale()
           
 boolean scanCharactersFromSet_intoString(NSCharacterSet set, PointerByReference value)
           
 boolean scanDouble(DoubleBuffer value)
           
 boolean scanDouble(DoubleByReference value)
          Deprecated. use the safer method scanDouble(java.nio.DoubleBuffer) instead
 boolean scanFloat(FloatBuffer value)
           
 boolean scanFloat(FloatByReference value)
          Deprecated. use the safer method scanFloat(java.nio.FloatBuffer) instead
 boolean scanHexDouble(DoubleBuffer result)
          Original signature : -(BOOL)scanHexDouble:(double*)
Corresponding to %a or %A formatting.
 boolean scanHexDouble(DoubleByReference result)
          Deprecated. use the safer method scanHexDouble(java.nio.DoubleBuffer) instead
 boolean scanHexFloat(FloatBuffer result)
          Original signature : -(BOOL)scanHexFloat:(float*)
Corresponding to %a or %A formatting.
 boolean scanHexFloat(FloatByReference result)
          Deprecated. use the safer method scanHexFloat(java.nio.FloatBuffer) instead
 boolean scanHexInt(IntBuffer value)
          Original signature : -(BOOL)scanHexInt:(unsigned*)
Optionally prefixed with "0x" or "0X"
 boolean scanHexInt(IntByReference value)
          Deprecated. use the safer method scanHexInt(java.nio.IntBuffer) instead
 boolean scanHexLongLong(LongBuffer result)
           
 boolean scanHexLongLong(LongByReference result)
          Deprecated. use the safer method scanHexLongLong(java.nio.LongBuffer) instead
 boolean scanInt(IntBuffer value)
           
 boolean scanInt(IntByReference value)
          Deprecated. use the safer method scanInt(java.nio.IntBuffer) instead
 boolean scanInteger(IntBuffer value)
           
 boolean scanInteger(IntByReference value)
          Deprecated. use the safer method scanInteger(java.nio.IntBuffer) instead
 boolean scanLongLong(LongBuffer value)
           
 boolean scanLongLong(LongByReference value)
          Deprecated. use the safer method scanLongLong(java.nio.LongBuffer) instead
 boolean scanString_intoString(NSString string, PointerByReference value)
           
 boolean scanUpToCharactersFromSet_intoString(NSCharacterSet set, PointerByReference value)
           
 boolean scanUpToString_intoString(NSString string, PointerByReference value)
           
 

Method Detail

charactersToBeSkipped

NSCharacterSet charactersToBeSkipped()

caseSensitive

boolean caseSensitive()

locale

NSObject locale()

scanInt

@Deprecated
boolean scanInt(IntByReference value)
Deprecated. use the safer method scanInt(java.nio.IntBuffer) instead

Original signature : -(BOOL)scanInt:(int*)


scanInt

boolean scanInt(IntBuffer value)

scanInteger

@Deprecated
boolean scanInteger(IntByReference value)
Deprecated. use the safer method scanInteger(java.nio.IntBuffer) instead

Original signature : -(BOOL)scanInteger:(NSInteger*)


scanInteger

boolean scanInteger(IntBuffer value)

scanHexLongLong

@Deprecated
boolean scanHexLongLong(LongByReference result)
Deprecated. use the safer method scanHexLongLong(java.nio.LongBuffer) instead

Original signature : -(BOOL)scanHexLongLong:(unsigned long long*)


scanHexLongLong

boolean scanHexLongLong(LongBuffer result)

scanHexFloat

@Deprecated
boolean scanHexFloat(FloatByReference result)
Deprecated. use the safer method scanHexFloat(java.nio.FloatBuffer) instead

Original signature : -(BOOL)scanHexFloat:(float*)
Corresponding to %a or %A formatting. Requires "0x" or "0X" prefix.


scanHexFloat

boolean scanHexFloat(FloatBuffer result)
Original signature : -(BOOL)scanHexFloat:(float*)
Corresponding to %a or %A formatting. Requires "0x" or "0X" prefix.


scanHexDouble

@Deprecated
boolean scanHexDouble(DoubleByReference result)
Deprecated. use the safer method scanHexDouble(java.nio.DoubleBuffer) instead

Original signature : -(BOOL)scanHexDouble:(double*)
Corresponding to %a or %A formatting. Requires "0x" or "0X" prefix.


scanHexDouble

boolean scanHexDouble(DoubleBuffer result)
Original signature : -(BOOL)scanHexDouble:(double*)
Corresponding to %a or %A formatting. Requires "0x" or "0X" prefix.


scanHexInt

@Deprecated
boolean scanHexInt(IntByReference value)
Deprecated. use the safer method scanHexInt(java.nio.IntBuffer) instead

Original signature : -(BOOL)scanHexInt:(unsigned*)
Optionally prefixed with "0x" or "0X"


scanHexInt

boolean scanHexInt(IntBuffer value)
Original signature : -(BOOL)scanHexInt:(unsigned*)
Optionally prefixed with "0x" or "0X"


scanLongLong

@Deprecated
boolean scanLongLong(LongByReference value)
Deprecated. use the safer method scanLongLong(java.nio.LongBuffer) instead

Original signature : -(BOOL)scanLongLong:(long long*)


scanLongLong

boolean scanLongLong(LongBuffer value)

scanFloat

@Deprecated
boolean scanFloat(FloatByReference value)
Deprecated. use the safer method scanFloat(java.nio.FloatBuffer) instead

Original signature : -(BOOL)scanFloat:(float*)


scanFloat

boolean scanFloat(FloatBuffer value)

scanDouble

@Deprecated
boolean scanDouble(DoubleByReference value)
Deprecated. use the safer method scanDouble(java.nio.DoubleBuffer) instead

Original signature : -(BOOL)scanDouble:(double*)


scanDouble

boolean scanDouble(DoubleBuffer value)

scanString_intoString

boolean scanString_intoString(NSString string,
                              PointerByReference value)

scanCharactersFromSet_intoString

boolean scanCharactersFromSet_intoString(NSCharacterSet set,
                                         PointerByReference value)

scanUpToString_intoString

boolean scanUpToString_intoString(NSString string,
                                  PointerByReference value)

scanUpToCharactersFromSet_intoString

boolean scanUpToCharactersFromSet_intoString(NSCharacterSet set,
                                             PointerByReference value)

isAtEnd

boolean isAtEnd()

initWithString

NSScanner initWithString(NSString string)