Interface VltEntryInfo
-
public interface VltEntryInfo
Entry
...
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
VltEntryInfo.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
checkModified(VaultFile remoteFile)
VltEntryInfo
copyAs(VltEntryInfo.Type type)
String
getContentType()
long
getDate()
MD5
getMd5()
long
getSize()
VltEntryInfo.Type
getType()
boolean
isDirectory()
boolean
isSame(VltEntryInfo base)
void
setContentType(String contentType)
void
setDate(long date)
void
setMd5(MD5 md5)
void
setSize(long size)
void
update(File file, boolean force)
void
update(MetaFile file, boolean force)
void
update(VltEntryInfo base)
-
-
-
Method Detail
-
copyAs
VltEntryInfo copyAs(VltEntryInfo.Type type)
-
getType
VltEntryInfo.Type getType()
-
getDate
long getDate()
-
setDate
void setDate(long date)
-
getMd5
MD5 getMd5()
-
setMd5
void setMd5(MD5 md5)
-
getContentType
String getContentType()
-
setContentType
void setContentType(String contentType)
-
getSize
long getSize()
-
setSize
void setSize(long size)
-
checkModified
boolean checkModified(VaultFile remoteFile)
-
update
void update(VltEntryInfo base)
-
update
void update(File file, boolean force) throws IOException
- Throws:
IOException
-
update
void update(MetaFile file, boolean force) throws IOException
- Throws:
IOException
-
isDirectory
boolean isDirectory()
-
isSame
boolean isSame(VltEntryInfo base)
-
-