File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
src/main/java/net/fortuna/ical4j/filter Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,15 @@ public int hashCode() {
81
81
return Objects .hash (name , value , attributes );
82
82
}
83
83
84
+ @ Override
85
+ public String toString () {
86
+ return "FilterTarget{" +
87
+ "name='" + name + '\'' +
88
+ ", value=" + value +
89
+ ", attributes=" + attributes +
90
+ '}' ;
91
+ }
92
+
84
93
public static class Attribute {
85
94
86
95
private final String name ;
@@ -122,5 +131,13 @@ public static Attribute parse(String string) {
122
131
String value = string .contains (":" ) ? string .split (":" )[1 ] : null ;
123
132
return new Attribute (name , value );
124
133
}
134
+
135
+ @ Override
136
+ public String toString () {
137
+ return "Attribute{" +
138
+ "name='" + name + '\'' +
139
+ ", value='" + value + '\'' +
140
+ '}' ;
141
+ }
125
142
}
126
143
}
Original file line number Diff line number Diff line change @@ -66,4 +66,11 @@ public boolean equals(Object o) {
66
66
public int hashCode () {
67
67
return Objects .hash (value );
68
68
}
69
+
70
+ @ Override
71
+ public String toString () {
72
+ return "TargetExpression{" +
73
+ "value=" + value +
74
+ '}' ;
75
+ }
69
76
}
You can’t perform that action at this time.
0 commit comments