Package org.codehaus.groovy.runtime
Class WritablePath
java.lang.Object
org.codehaus.groovy.runtime.WritablePath
- All Implemented Interfaces:
Writable
,java.lang.Comparable<java.nio.file.Path>
,java.lang.Iterable<java.nio.file.Path>
,java.nio.file.Path
,java.nio.file.Watchable
@Deprecated public class WritablePath extends java.lang.Object implements java.nio.file.Path, Writable
Deprecated.
A Writable Path.
-
Constructor Summary
Constructors Constructor Description WritablePath(java.nio.file.Path delegate)
Deprecated.WritablePath(java.nio.file.Path delegate, java.lang.String encoding)
Deprecated. -
Method Summary
Modifier and Type Method Description int
compareTo(java.nio.file.Path other)
Deprecated.boolean
endsWith(java.lang.String other)
Deprecated.boolean
endsWith(java.nio.file.Path other)
Deprecated.boolean
equals(java.lang.Object other)
Deprecated.java.nio.file.Path
getFileName()
Deprecated.java.nio.file.FileSystem
getFileSystem()
Deprecated.java.nio.file.Path
getName(int index)
Deprecated.int
getNameCount()
Deprecated.java.nio.file.Path
getParent()
Deprecated.java.nio.file.Path
getRoot()
Deprecated.int
hashCode()
Deprecated.boolean
isAbsolute()
Deprecated.java.util.Iterator<java.nio.file.Path>
iterator()
Deprecated.java.nio.file.Path
normalize()
Deprecated.java.nio.file.WatchKey
register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>... events)
Deprecated.java.nio.file.WatchKey
register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>[] events, java.nio.file.WatchEvent.Modifier... modifiers)
Deprecated.java.nio.file.Path
relativize(java.nio.file.Path other)
Deprecated.java.nio.file.Path
resolve(java.lang.String other)
Deprecated.java.nio.file.Path
resolve(java.nio.file.Path other)
Deprecated.java.nio.file.Path
resolveSibling(java.lang.String other)
Deprecated.java.nio.file.Path
resolveSibling(java.nio.file.Path other)
Deprecated.boolean
startsWith(java.lang.String other)
Deprecated.boolean
startsWith(java.nio.file.Path other)
Deprecated.java.nio.file.Path
subpath(int beginIndex, int endIndex)
Deprecated.java.nio.file.Path
toAbsolutePath()
Deprecated.java.io.File
toFile()
Deprecated.java.nio.file.Path
toRealPath(java.nio.file.LinkOption... options)
Deprecated.java.lang.String
toString()
Deprecated.java.net.URI
toUri()
Deprecated.java.io.Writer
writeTo(java.io.Writer out)
Deprecated.Writes this object to the given writer.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
WritablePath
public WritablePath(java.nio.file.Path delegate)Deprecated. -
WritablePath
public WritablePath(java.nio.file.Path delegate, java.lang.String encoding)Deprecated.
-
-
Method Details
-
writeTo
public java.io.Writer writeTo(java.io.Writer out) throws java.io.IOExceptionDeprecated.Description copied from interface:Writable
Writes this object to the given writer.This is used to defer content creation until the point when it is streamed to the output destination. Oftentimes, content will be defined but not necessarily created (as is may be the case with a Closure definition.) In that case, the output is then 'deferred' to the point when it is serialized to the writer. This class may be used whenever an object should be responsible for creating its own textual representation, but creating the entire output as a single String would be inefficient (such as outputting a multi-gigabyte XML document.)
-
getFileSystem
public java.nio.file.FileSystem getFileSystem()Deprecated.- Specified by:
getFileSystem
in interfacejava.nio.file.Path
-
isAbsolute
public boolean isAbsolute()Deprecated.- Specified by:
isAbsolute
in interfacejava.nio.file.Path
-
getRoot
public java.nio.file.Path getRoot()Deprecated.- Specified by:
getRoot
in interfacejava.nio.file.Path
-
getFileName
public java.nio.file.Path getFileName()Deprecated.- Specified by:
getFileName
in interfacejava.nio.file.Path
-
getParent
public java.nio.file.Path getParent()Deprecated.- Specified by:
getParent
in interfacejava.nio.file.Path
-
getNameCount
public int getNameCount()Deprecated.- Specified by:
getNameCount
in interfacejava.nio.file.Path
-
getName
public java.nio.file.Path getName(int index)Deprecated.- Specified by:
getName
in interfacejava.nio.file.Path
-
subpath
public java.nio.file.Path subpath(int beginIndex, int endIndex)Deprecated.- Specified by:
subpath
in interfacejava.nio.file.Path
-
startsWith
public boolean startsWith(java.nio.file.Path other)Deprecated.- Specified by:
startsWith
in interfacejava.nio.file.Path
-
startsWith
public boolean startsWith(java.lang.String other)Deprecated.- Specified by:
startsWith
in interfacejava.nio.file.Path
-
endsWith
public boolean endsWith(java.nio.file.Path other)Deprecated.- Specified by:
endsWith
in interfacejava.nio.file.Path
-
endsWith
public boolean endsWith(java.lang.String other)Deprecated.- Specified by:
endsWith
in interfacejava.nio.file.Path
-
normalize
public java.nio.file.Path normalize()Deprecated.- Specified by:
normalize
in interfacejava.nio.file.Path
-
resolve
public java.nio.file.Path resolve(java.nio.file.Path other)Deprecated.- Specified by:
resolve
in interfacejava.nio.file.Path
-
resolve
public java.nio.file.Path resolve(java.lang.String other)Deprecated.- Specified by:
resolve
in interfacejava.nio.file.Path
-
resolveSibling
public java.nio.file.Path resolveSibling(java.nio.file.Path other)Deprecated.- Specified by:
resolveSibling
in interfacejava.nio.file.Path
-
resolveSibling
public java.nio.file.Path resolveSibling(java.lang.String other)Deprecated.- Specified by:
resolveSibling
in interfacejava.nio.file.Path
-
relativize
public java.nio.file.Path relativize(java.nio.file.Path other)Deprecated.- Specified by:
relativize
in interfacejava.nio.file.Path
-
toUri
public java.net.URI toUri()Deprecated.- Specified by:
toUri
in interfacejava.nio.file.Path
-
toAbsolutePath
public java.nio.file.Path toAbsolutePath()Deprecated.- Specified by:
toAbsolutePath
in interfacejava.nio.file.Path
-
toRealPath
public java.nio.file.Path toRealPath(java.nio.file.LinkOption... options) throws java.io.IOExceptionDeprecated.- Specified by:
toRealPath
in interfacejava.nio.file.Path
- Throws:
java.io.IOException
-
toFile
public java.io.File toFile()Deprecated.- Specified by:
toFile
in interfacejava.nio.file.Path
-
register
public java.nio.file.WatchKey register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>[] events, java.nio.file.WatchEvent.Modifier... modifiers) throws java.io.IOExceptionDeprecated.- Specified by:
register
in interfacejava.nio.file.Path
- Specified by:
register
in interfacejava.nio.file.Watchable
- Throws:
java.io.IOException
-
register
public java.nio.file.WatchKey register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>... events) throws java.io.IOExceptionDeprecated.- Specified by:
register
in interfacejava.nio.file.Path
- Specified by:
register
in interfacejava.nio.file.Watchable
- Throws:
java.io.IOException
-
iterator
public java.util.Iterator<java.nio.file.Path> iterator()Deprecated.- Specified by:
iterator
in interfacejava.lang.Iterable<java.nio.file.Path>
- Specified by:
iterator
in interfacejava.nio.file.Path
-
compareTo
public int compareTo(java.nio.file.Path other)Deprecated.- Specified by:
compareTo
in interfacejava.lang.Comparable<java.nio.file.Path>
- Specified by:
compareTo
in interfacejava.nio.file.Path
-
equals
public boolean equals(java.lang.Object other)Deprecated.- Specified by:
equals
in interfacejava.nio.file.Path
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()Deprecated.- Specified by:
hashCode
in interfacejava.nio.file.Path
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()Deprecated.- Specified by:
toString
in interfacejava.nio.file.Path
- Overrides:
toString
in classjava.lang.Object
-