Class FSRepresentationCacheRecord
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheRecord
-
public class FSRepresentationCacheRecord extends java.lang.Object
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description static int
EXPANDED_SIZE_FIELD
static int
HASH_FIELD
private long
myExpandedSize
private java.lang.String
myHash
private long
myOffset
private long
myRevision
private long
mySize
static int
OFFSET_FIELD
static int
REVISION_FIELD
static int
SIZE_FIELD
-
Constructor Summary
Constructors Constructor Description FSRepresentationCacheRecord(java.lang.String hash, long revision, long offset, long size, long expandedSize)
FSRepresentationCacheRecord(org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getExpandedSize()
java.lang.String
getHash()
long
getOffset()
long
getRevision()
long
getSize()
void
setExpandedSize(long expandedSize)
void
setHash(java.lang.String hash)
void
setOffset(long offset)
void
setRevision(long revision)
void
setSize(long size)
java.lang.String
toString()
-
-
-
Field Detail
-
HASH_FIELD
public static int HASH_FIELD
-
REVISION_FIELD
public static int REVISION_FIELD
-
OFFSET_FIELD
public static int OFFSET_FIELD
-
SIZE_FIELD
public static int SIZE_FIELD
-
EXPANDED_SIZE_FIELD
public static int EXPANDED_SIZE_FIELD
-
myHash
private java.lang.String myHash
-
myRevision
private long myRevision
-
myOffset
private long myOffset
-
mySize
private long mySize
-
myExpandedSize
private long myExpandedSize
-
-
Constructor Detail
-
FSRepresentationCacheRecord
public FSRepresentationCacheRecord(java.lang.String hash, long revision, long offset, long size, long expandedSize)
-
FSRepresentationCacheRecord
FSRepresentationCacheRecord(org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor) throws org.tmatesoft.sqljet.core.SqlJetException
- Throws:
org.tmatesoft.sqljet.core.SqlJetException
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getHash
public java.lang.String getHash()
- Returns:
- the hash
-
setHash
public void setHash(java.lang.String hash)
- Parameters:
hash
- the hash to set
-
getRevision
public long getRevision()
- Returns:
- the revision
-
setRevision
public void setRevision(long revision)
- Parameters:
revision
- the revision to set
-
getOffset
public long getOffset()
- Returns:
- the offset
-
setOffset
public void setOffset(long offset)
- Parameters:
offset
- the offset to set
-
getSize
public long getSize()
- Returns:
- the size
-
setSize
public void setSize(long size)
- Parameters:
size
- the size to set
-
getExpandedSize
public long getExpandedSize()
- Returns:
- the expanded_size
-
setExpandedSize
public void setExpandedSize(long expandedSize)
- Parameters:
expanded_size
- the expanded_size to set
-
-