Package com.perforce.p4java.core.file
Class FileStatAncilliaryOptions
- java.lang.Object
-
- com.perforce.p4java.core.file.FileStatAncilliaryOptions
-
public class FileStatAncilliaryOptions extends java.lang.ObjectA simple way to encapsulate the complex ancilliary output options available for the IServer getExtendedFiles method.NOTE: no guidance is given here on how to use this class; please refer to the main Perforce fstat documentation for details of each option.
-
-
Constructor Summary
Constructors Constructor Description FileStatAncilliaryOptions()FileStatAncilliaryOptions(boolean allRevs, boolean fileSizeDigest, boolean bothPathTypes, boolean pendingIntegrationRecs, boolean excludeLocalPath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAllRevs()booleanisBothPathTypes()booleanisExcludeLocalPath()booleanisFileSizeDigest()booleanisPendingIntegrationRecs()booleanisShowAttributes()booleanisShowHexAttributes()booleanisShowStorageLocation()voidsetAllRevs(boolean allRevs)voidsetBothPathTypes(boolean bothPathTypes)voidsetExcludeLocalPath(boolean excludeLocalPath)voidsetFileSizeDigest(boolean fileSizeDigest)voidsetPendingIntegrationRecs(boolean pendingIntegrationRecs)voidsetShowAttributes(boolean showAttributes)voidsetShowHexAttributes(boolean showHexAttributes)voidsetShowStorageLocation(boolean showStorageLocation)java.util.List<java.lang.String>toStrings()Return a list of strings, one element for each enabled option.
-
-
-
Method Detail
-
toStrings
public java.util.List<java.lang.String> toStrings()
Return a list of strings, one element for each enabled option.- Returns:
- non-null but possibly-empty list of strings.
-
isAllRevs
public boolean isAllRevs()
-
setAllRevs
public void setAllRevs(boolean allRevs)
-
isFileSizeDigest
public boolean isFileSizeDigest()
-
setFileSizeDigest
public void setFileSizeDigest(boolean fileSizeDigest)
-
isBothPathTypes
public boolean isBothPathTypes()
-
setBothPathTypes
public void setBothPathTypes(boolean bothPathTypes)
-
isPendingIntegrationRecs
public boolean isPendingIntegrationRecs()
-
setPendingIntegrationRecs
public void setPendingIntegrationRecs(boolean pendingIntegrationRecs)
-
isExcludeLocalPath
public boolean isExcludeLocalPath()
-
setExcludeLocalPath
public void setExcludeLocalPath(boolean excludeLocalPath)
-
isShowAttributes
public boolean isShowAttributes()
- Returns:
- showAttributes
- Since:
- 2011.1
-
setShowAttributes
public void setShowAttributes(boolean showAttributes)
- Parameters:
showAttributes- showAttributes- Since:
- 2011.1
-
isShowHexAttributes
public boolean isShowHexAttributes()
- Returns:
- showHexAttributes
- Since:
- 2011.1
-
setShowHexAttributes
public void setShowHexAttributes(boolean showHexAttributes)
- Parameters:
showHexAttributes- showHexAttributes- Since:
- 2011.1
-
isShowStorageLocation
public boolean isShowStorageLocation()
-
setShowStorageLocation
public void setShowStorageLocation(boolean showStorageLocation)
-
-