Package com.google.gerrit.server.git
Class ChangeSet
- java.lang.Object
- 
- com.google.gerrit.server.git.ChangeSet
 
- 
 public class ChangeSet extends Object A set of changes grouped together to be submitted atomically.MergeSuperSet constructs ChangeSets to accumulate intermediate results toward the ChangeSet it returns when done. This class is not thread safe. 
- 
- 
Constructor SummaryConstructors Constructor Description ChangeSet(ChangeData change, boolean visible)ChangeSet(Iterable<ChangeData> changes, Iterable<ChangeData> hiddenChanges)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.collect.ImmutableCollection<ChangeData>changes()com.google.common.collect.ListMultimap<Branch.NameKey,ChangeData>changesByBranch()com.google.common.collect.ImmutableMap<Change.Id,ChangeData>changesById()booleanfurtherHiddenChanges()com.google.common.collect.ImmutableSet<Change.Id>ids()com.google.common.collect.ImmutableList<ChangeData>nonVisibleChanges()com.google.common.collect.ImmutableSet<Change.Id>nonVisibleIds()com.google.common.collect.ImmutableSet<Project.NameKey>projects()intsize()StringtoString()
 
- 
- 
- 
Constructor Detail- 
ChangeSetpublic ChangeSet(Iterable<ChangeData> changes, Iterable<ChangeData> hiddenChanges) 
 - 
ChangeSetpublic ChangeSet(ChangeData change, boolean visible) 
 
- 
 - 
Method Detail- 
idspublic com.google.common.collect.ImmutableSet<Change.Id> ids() 
 - 
changesByIdpublic com.google.common.collect.ImmutableMap<Change.Id,ChangeData> changesById() 
 - 
changesByBranchpublic com.google.common.collect.ListMultimap<Branch.NameKey,ChangeData> changesByBranch() throws com.google.gwtorm.server.OrmException - Throws:
- com.google.gwtorm.server.OrmException
 
 - 
changespublic com.google.common.collect.ImmutableCollection<ChangeData> changes() 
 - 
projectspublic com.google.common.collect.ImmutableSet<Project.NameKey> projects() 
 - 
nonVisibleIdspublic com.google.common.collect.ImmutableSet<Change.Id> nonVisibleIds() 
 - 
nonVisibleChangespublic com.google.common.collect.ImmutableList<ChangeData> nonVisibleChanges() 
 - 
furtherHiddenChangespublic boolean furtherHiddenChanges() 
 - 
sizepublic int size() 
 
- 
 
-