Interface IFileCompareResultBean
-
- All Known Subinterfaces:
IFileContentResultBean
- All Known Implementing Classes:
FileCompareResultBean
,FileContentResultBean
public interface IFileCompareResultBean
The Interface IFileCompareResultBean.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAbsolutePathEquality()
Gets the absolute path equality.boolean
getFileExtensionEquality()
Gets the file extension equality.java.io.File
getFileToCompare()
Gets the file to compare.boolean
getLastModifiedEquality()
Gets the last modified equality.boolean
getLengthEquality()
Gets the length equality.boolean
getNameEquality()
Gets the name equality.java.io.File
getSourceFile()
Gets the source file.void
setAbsolutePathEquality(java.lang.Boolean absolutePathEquality)
Sets the absolute path equality.void
setFileExtensionEquality(java.lang.Boolean fileExtensionEquality)
Sets the file extension equality.void
setLastModifiedEquality(java.lang.Boolean lastModifiedEquality)
Sets the last modified equality.void
setLengthEquality(java.lang.Boolean lengthEquality)
Sets the length equality.void
setNameEquality(java.lang.Boolean nameEquality)
Sets the name equality.
-
-
-
Method Detail
-
getAbsolutePathEquality
boolean getAbsolutePathEquality()
Gets the absolute path equality.- Returns:
- the absolute path equality
-
setAbsolutePathEquality
void setAbsolutePathEquality(java.lang.Boolean absolutePathEquality)
Sets the absolute path equality.- Parameters:
absolutePathEquality
- the new absolute path equality
-
getFileExtensionEquality
boolean getFileExtensionEquality()
Gets the file extension equality.- Returns:
- the file extension equality
-
setFileExtensionEquality
void setFileExtensionEquality(java.lang.Boolean fileExtensionEquality)
Sets the file extension equality.- Parameters:
fileExtensionEquality
- the new file extension equality
-
getFileToCompare
java.io.File getFileToCompare()
Gets the file to compare.- Returns:
- Returns the file to compare.
-
getLastModifiedEquality
boolean getLastModifiedEquality()
Gets the last modified equality.- Returns:
- the last modified equality
-
setLastModifiedEquality
void setLastModifiedEquality(java.lang.Boolean lastModifiedEquality)
Sets the last modified equality.- Parameters:
lastModifiedEquality
- the new last modified equality
-
getLengthEquality
boolean getLengthEquality()
Gets the length equality.- Returns:
- the length equality
-
setLengthEquality
void setLengthEquality(java.lang.Boolean lengthEquality)
Sets the length equality.- Parameters:
lengthEquality
- the new length equality
-
getNameEquality
boolean getNameEquality()
Gets the name equality.- Returns:
- the name equality
-
setNameEquality
void setNameEquality(java.lang.Boolean nameEquality)
Sets the name equality.- Parameters:
nameEquality
- the new name equality
-
getSourceFile
java.io.File getSourceFile()
Gets the source file.- Returns:
- Returns the source file.
-
-