All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Path

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

public class Path
extends NativeObject
This class wraps the Objective-C class NSJavaPath.


Constructor Index

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

Method Index

 o fileSystemRepresentation(String)
A wrapper for the + fileSystemRepresentation: Objective-C class method.
 o fullUserName()
A wrapper for the + fullUserName Objective-C class method.
 o homeDirectory()
A wrapper for the + homeDirectory Objective-C class method.
 o homeDirectoryForUser(String)
A wrapper for the + homeDirectoryForUser: Objective-C class method.
 o isAbsolutePath(String)
A wrapper for the + isAbsolutePath: Objective-C class method.
 o lastPathComponent(String)
A wrapper for the + lastPathComponent: Objective-C class method.
 o openStepRootDirectory()
A wrapper for the + openStepRootDirectory Objective-C class method.
 o pathComponents(String)
A wrapper for the + pathComponents: Objective-C class method.
 o pathExtension(String)
A wrapper for the + pathExtension: Objective-C class method.
 o pathsMatchingExtensions(Array, Array)
A wrapper for the + pathsMatchingExtensions:: Objective-C class method.
 o pathWithComponents(Array)
A wrapper for the + pathWithComponents: Objective-C class method.
 o standardApplicationPaths()
A wrapper for the + standardApplicationPaths Objective-C class method.
 o standardLibraryPaths()
A wrapper for the + standardLibraryPaths Objective-C class method.
 o stringByAbbreviatingWithTildeInPath(String)
A wrapper for the + stringByAbbreviatingWithTildeInPath: Objective-C class method.
 o stringByAppendingPathComponent(String, String)
A wrapper for the + stringByAppendingPathComponent:: Objective-C class method.
 o stringByAppendingPathExtension(String, String)
A wrapper for the + stringByAppendingPathExtension:: Objective-C class method.
 o stringByDeletingLastPathComponent(String)
A wrapper for the + stringByDeletingLastPathComponent: Objective-C class method.
 o stringByDeletingPathExtension(String)
A wrapper for the + stringByDeletingPathExtension: Objective-C class method.
 o stringByExpandingTildeInPath(String)
A wrapper for the + stringByExpandingTildeInPath: Objective-C class method.
 o stringByResolvingSymlinksInPath(String)
A wrapper for the + stringByResolvingSymlinksInPath: Objective-C class method.
 o stringByStandardizingPath(String)
A wrapper for the + stringByStandardizingPath: Objective-C class method.
 o stringsByAppendingPaths(String, Array)
A wrapper for the + stringsByAppendingPaths:: Objective-C class method.
 o temporaryDirectory()
A wrapper for the + temporaryDirectory Objective-C class method.
 o userName()
A wrapper for the + userName Objective-C class method.

Constructors

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

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

Methods

 o pathWithComponents
 public static native String pathWithComponents(Array components)
A wrapper for the + pathWithComponents: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o pathComponents
 public static native Array pathComponents(String string)
A wrapper for the + pathComponents: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o isAbsolutePath
 public static native boolean isAbsolutePath(String string)
A wrapper for the + isAbsolutePath: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o pathsMatchingExtensions
 public static native Array pathsMatchingExtensions(Array array,
                                                    Array filterTypes)
A wrapper for the + pathsMatchingExtensions:: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o lastPathComponent
 public static native String lastPathComponent(String string)
A wrapper for the + lastPathComponent: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByDeletingLastPathComponent
 public static native String stringByDeletingLastPathComponent(String string)
A wrapper for the + stringByDeletingLastPathComponent: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByAppendingPathComponent
 public static native String stringByAppendingPathComponent(String string,
                                                            String str)
A wrapper for the + stringByAppendingPathComponent:: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o pathExtension
 public static native String pathExtension(String string)
A wrapper for the + pathExtension: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByDeletingPathExtension
 public static native String stringByDeletingPathExtension(String string)
A wrapper for the + stringByDeletingPathExtension: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByAppendingPathExtension
 public static native String stringByAppendingPathExtension(String string,
                                                            String str)
A wrapper for the + stringByAppendingPathExtension:: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByAbbreviatingWithTildeInPath
 public static native String stringByAbbreviatingWithTildeInPath(String string)
A wrapper for the + stringByAbbreviatingWithTildeInPath: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByExpandingTildeInPath
 public static native String stringByExpandingTildeInPath(String string)
A wrapper for the + stringByExpandingTildeInPath: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByStandardizingPath
 public static native String stringByStandardizingPath(String string)
A wrapper for the + stringByStandardizingPath: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringByResolvingSymlinksInPath
 public static native String stringByResolvingSymlinksInPath(String string)
A wrapper for the + stringByResolvingSymlinksInPath: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o stringsByAppendingPaths
 public static native Array stringsByAppendingPaths(String string,
                                                    Array paths)
A wrapper for the + stringsByAppendingPaths:: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o fileSystemRepresentation
 public static native String fileSystemRepresentation(String string)
A wrapper for the + fileSystemRepresentation: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o userName
 public static native String userName()
A wrapper for the + userName 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o homeDirectory
 public static native String homeDirectory()
A wrapper for the + homeDirectory 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o homeDirectoryForUser
 public static native String homeDirectoryForUser(String userName)
A wrapper for the + homeDirectoryForUser: 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o fullUserName
 public static native String fullUserName()
A wrapper for the + fullUserName 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o standardApplicationPaths
 public static native Array standardApplicationPaths()
A wrapper for the + standardApplicationPaths 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o standardLibraryPaths
 public static native Array standardLibraryPaths()
A wrapper for the + standardLibraryPaths 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o temporaryDirectory
 public static native String temporaryDirectory()
A wrapper for the + temporaryDirectory 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, Path, should be enough to head you in the right direction should you find more than one such method).

 o openStepRootDirectory
 public static native String openStepRootDirectory()
A wrapper for the + openStepRootDirectory 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, Path, 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