File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
colormipsearch-persist/src/main/java/org/janelia/colormipsearch/dao Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 66
77import org .apache .commons .collections4 .CollectionUtils ;
88import org .apache .commons .lang3 .StringUtils ;
9+ import org .apache .commons .lang3 .builder .ToStringBuilder ;
910import org .janelia .colormipsearch .datarequests .ScoresFilter ;
1011import org .janelia .colormipsearch .model .AbstractMatchEntity ;
1112import org .janelia .colormipsearch .model .AbstractNeuronEntity ;
@@ -120,4 +121,17 @@ public boolean isEmpty() {
120121 && CollectionUtils .isEmpty (targetEntityIds )
121122 && !hasTags ();
122123 }
124+
125+ @ Override
126+ public String toString () {
127+ return new ToStringBuilder (this )
128+ .append ("scoresFilter" , scoresFilter )
129+ .append ("matchEntityType" , matchEntityType )
130+ .append ("matchEntityIds" , matchEntityIds )
131+ .append ("maskEntityIds" , maskEntityIds )
132+ .append ("targetEntityIds" , targetEntityIds )
133+ .append ("tags" , tags )
134+ .append ("excludedTags" , excludedTags )
135+ .toString ();
136+ }
123137}
You can’t perform that action at this time.
0 commit comments