All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.StringManipulator

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

public class StringManipulator
extends NativeObject
This class wraps the Objective-C class NSJavaStringManipulator.


Constructor Index

 o StringManipulator()
This default constructor is equivalent to Objective-C's [[NSJavaStringManipulator alloc] init].
 o StringManipulator(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o capitalizedString(String)
A wrapper for the + capitalizedString: Objective-C class method.
 o lineRangeForRange(String, Range)
A wrapper for the + lineRangeForRange:: Objective-C class method.
 o lowercaseString(String)
A wrapper for the + lowercaseString: Objective-C class method.
 o stringWithContentsOfFile(String)
A wrapper for the + stringWithContentsOfFile: Objective-C class method.
 o stringWithDataUsingEncoding(Data, int)
A wrapper for the + stringWithData:encoding: Objective-C class method.
 o uppercaseString(String)
A wrapper for the + uppercaseString: Objective-C class method.
 o writeStringToFile(String, String, boolean)
A wrapper for the + writeString:toFile:atomically: Objective-C class method.

Constructors

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

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

Methods

 o stringWithContentsOfFile
 public static native String stringWithContentsOfFile(String file)
A wrapper for the + stringWithContentsOfFile: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o writeStringToFile
 public static native boolean writeStringToFile(String string,
                                                String path,
                                                boolean useAuxiliaryFile)
A wrapper for the + writeString:toFile:atomically: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o stringWithDataUsingEncoding
 public static native String stringWithDataUsingEncoding(Data data,
                                                         int encoding)
A wrapper for the + stringWithData:encoding: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o uppercaseString
 public static native String uppercaseString(String string)
A wrapper for the + uppercaseString: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o lowercaseString
 public static native String lowercaseString(String string)
A wrapper for the + lowercaseString: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o capitalizedString
 public static native String capitalizedString(String string)
A wrapper for the + capitalizedString: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).

 o lineRangeForRange
 public static native Range lineRangeForRange(String string,
                                              Range range)
A wrapper for the + lineRangeForRange:: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, StringManipulator, should be enough to head you in the right direction should you find more than one such method).


All Packages  Class Hierarchy  This Package  Previous  Next  Index