Class ChangeSetResults
- java.lang.Object
-
- org.apache.commons.compress.changes.ChangeSetResults
-
public class ChangeSetResults extends java.lang.Object
Stores the results of an performed ChangeSet operation.
-
-
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()
Returns a list of file names which has been added from the changesetjava.util.List<java.lang.String>
getAddedFromStream()
Returns a list of file names which has been added from the original streamjava.util.List<java.lang.String>
getDeleted()
Returns a list of file names which has been deleted
-
-
-
Method Detail
-
getAddedFromChangeSet
public java.util.List<java.lang.String> getAddedFromChangeSet()
Returns a list of file names which has been added from the changeset- Returns:
- the list of file names
-
getAddedFromStream
public java.util.List<java.lang.String> getAddedFromStream()
Returns 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()
Returns a list of file names which has been deleted- Returns:
- the list of file names
-
-