Class ChangeSetResults
- java.lang.Object
-
- org.apache.commons.compress.changes.ChangeSetResults
-
public class ChangeSetResults extends java.lang.ObjectStores the results of a performedChangeSetoperation.
-
-
Constructor Summary
Constructors Constructor Description ChangeSetResults()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getAddedFromChangeSet()Gets a list of file names which has been added from theChangeSetjava.util.List<java.lang.String>getAddedFromStream()Gets a list of file names which has been added from the original streamjava.util.List<java.lang.String>getDeleted()Gets a list of file names which has been deleted
-
-
-
Method Detail
-
getAddedFromChangeSet
public java.util.List<java.lang.String> getAddedFromChangeSet()
Gets a list of file names which has been added from theChangeSet- Returns:
- the list of file names
-
getAddedFromStream
public java.util.List<java.lang.String> getAddedFromStream()
Gets a list of file names which has been added from the original stream- Returns:
- the list of file names
-
getDeleted
public java.util.List<java.lang.String> getDeleted()
Gets a list of file names which has been deleted- Returns:
- the list of file names
-
-