Package org.jgroups.blocks
Class GridFile.Metadata
- java.lang.Object
- 
- org.jgroups.blocks.GridFile.Metadata
 
- 
- All Implemented Interfaces:
- Streamable
 - Enclosing class:
- GridFile
 
 public static class GridFile.Metadata extends java.lang.Object implements Streamable 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetChunkSize()intgetLength()longgetModificationTime()booleanisDirectory()booleanisFile()voidreadFrom(java.io.DataInput in)Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedvoidsetLength(int length)voidsetModificationTime(long modification_time)java.lang.StringtoString()voidwriteTo(java.io.DataOutput out)Write the entire state of the current object (including superclasses) to outstream.
 
- 
- 
- 
Field Detail- 
FILEpublic static final byte FILE - See Also:
- Constant Field Values
 
 - 
DIRpublic static final byte DIR - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getLengthpublic int getLength() 
 - 
setLengthpublic void setLength(int length) 
 - 
getModificationTimepublic long getModificationTime() 
 - 
setModificationTimepublic void setModificationTime(long modification_time) 
 - 
getChunkSizepublic int getChunkSize() 
 - 
isFilepublic boolean isFile() 
 - 
isDirectorypublic boolean isDirectory() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
writeTopublic void writeTo(java.io.DataOutput out) throws java.io.IOExceptionDescription copied from interface:StreamableWrite the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
- writeToin interface- Streamable
- Throws:
- java.io.IOException
 
 - 
readFrompublic void readFrom(java.io.DataInput in) throws java.io.IOExceptionDescription copied from interface:StreamableRead the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
- readFromin interface- Streamable
- Throws:
- java.io.IOException
 
 
- 
 
-