1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
package org.apache.giraph.io.gora.generated; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | 0 | @SuppressWarnings("all") |
24 | 0 | public class GEdge extends org.apache.gora.persistency.impl.PersistentBase |
25 | |
implements org.apache.avro.specific.SpecificRecord, |
26 | |
org.apache.gora.persistency.Persistent { |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | 0 | public static final org.apache.avro.Schema SCHEMAS = |
32 | 0 | new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\"," + |
33 | |
"\"name\":\"GEdge\"," + |
34 | |
"\"namespace\":\"org.apache.giraph.gora.generated\"," + |
35 | |
"\"fields\":[{\"name\":\"edgeId\",\"type\":\"string\"}," + |
36 | |
"{\"name\":\"edgeWeight\",\"type\":\"float\"}," + |
37 | |
"{\"name\":\"vertexInId\",\"type\":\"string\"}," + |
38 | |
"{\"name\":\"vertexOutId\",\"type\":\"string\"}," + |
39 | |
"{\"name\":\"label\",\"type\":\"string\"}]}"); |
40 | |
|
41 | |
|
42 | 0 | public static enum Field { |
43 | |
|
44 | |
|
45 | |
|
46 | 0 | EDGE_ID(0, "edgeId"), |
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | 0 | EDGE_WEIGHT(1, "edgeWeight"), |
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | 0 | VERTEX_IN_ID(2, "vertexInId"), |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | 0 | VERTEX_OUT_ID(3, "vertexOutId"), |
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | 0 | LABEL(4, "label"); |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
private int index; |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
private String name; |
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | 0 | Field(int index, String name) { |
84 | 0 | this.index = index; |
85 | 0 | this.name = name; |
86 | 0 | } |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
public int getIndex() { |
93 | 0 | return index; |
94 | |
} |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
|
100 | |
public String getName() { |
101 | 0 | return name; |
102 | |
} |
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
public String toString() { |
109 | 0 | return name; |
110 | |
} |
111 | |
}; |
112 | |
|
113 | |
|
114 | |
|
115 | |
|
116 | 0 | private static final String[] ALL_FIELDS = { |
117 | |
"edgeId", "edgeWeight", "vertexInId", "vertexOutId", "label"}; |
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | 0 | private static final Tombstone TOMBSTONE = new Tombstone(); |
123 | |
|
124 | |
|
125 | |
|
126 | |
|
127 | |
private java.lang.CharSequence edgeId; |
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | |
private float edgeWeight; |
133 | |
|
134 | |
|
135 | |
|
136 | |
|
137 | |
private java.lang.CharSequence vertexInId; |
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
private java.lang.CharSequence vertexOutId; |
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
private java.lang.CharSequence label; |
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
public int getFieldsCount() { |
154 | 0 | return GEdge.ALL_FIELDS.length; |
155 | |
} |
156 | |
|
157 | |
|
158 | |
|
159 | |
|
160 | |
|
161 | |
public org.apache.avro.Schema getSchema() { |
162 | 0 | return SCHEMAS; |
163 | |
} |
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
public java.lang.Object get(int field) { |
171 | 0 | switch (field) { |
172 | |
case 0: |
173 | 0 | return edgeId; |
174 | |
case 1: |
175 | 0 | return edgeWeight; |
176 | |
case 2: |
177 | 0 | return vertexInId; |
178 | |
case 3: |
179 | 0 | return vertexOutId; |
180 | |
case 4: |
181 | 0 | return label; |
182 | |
default: |
183 | 0 | throw new org.apache.avro.AvroRuntimeException("Bad index"); |
184 | |
} |
185 | |
} |
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
@SuppressWarnings(value = "unchecked") |
193 | |
public void put(int field, java.lang.Object value) { |
194 | 0 | switch (field) { |
195 | |
case 0: |
196 | 0 | edgeId = (java.lang.CharSequence) value; |
197 | 0 | break; |
198 | |
case 1: |
199 | 0 | edgeWeight = (java.lang.Float) value; |
200 | 0 | break; |
201 | |
case 2: |
202 | 0 | vertexInId = (java.lang.CharSequence) value; |
203 | 0 | break; |
204 | |
case 3: |
205 | 0 | vertexOutId = (java.lang.CharSequence) value; |
206 | 0 | break; |
207 | |
case 4: |
208 | 0 | label = (java.lang.CharSequence) value; |
209 | 0 | break; |
210 | |
default: |
211 | 0 | throw new org.apache.avro.AvroRuntimeException("Bad index"); |
212 | |
} |
213 | 0 | } |
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
public java.lang.CharSequence getEdgeId() { |
220 | 0 | return edgeId; |
221 | |
} |
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
public void setEdgeId(java.lang.CharSequence value) { |
228 | 0 | this.edgeId = value; |
229 | 0 | setDirty(0); |
230 | 0 | } |
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
|
237 | |
|
238 | |
public boolean isEdgeIdDirty(java.lang.CharSequence value) { |
239 | 0 | return isDirty(0); |
240 | |
} |
241 | |
|
242 | |
|
243 | |
|
244 | |
|
245 | |
|
246 | |
public java.lang.Float getEdgeWeight() { |
247 | 0 | return edgeWeight; |
248 | |
} |
249 | |
|
250 | |
|
251 | |
|
252 | |
|
253 | |
|
254 | |
public void setEdgeWeight(java.lang.Float value) { |
255 | 0 | this.edgeWeight = value; |
256 | 0 | setDirty(1); |
257 | 0 | } |
258 | |
|
259 | |
|
260 | |
|
261 | |
|
262 | |
|
263 | |
|
264 | |
|
265 | |
public boolean isEdgeWeightDirty(java.lang.Float value) { |
266 | 0 | return isDirty(1); |
267 | |
} |
268 | |
|
269 | |
|
270 | |
|
271 | |
|
272 | |
|
273 | |
public java.lang.CharSequence getVertexInId() { |
274 | 0 | return vertexInId; |
275 | |
} |
276 | |
|
277 | |
|
278 | |
|
279 | |
|
280 | |
|
281 | |
public void setVertexInId(java.lang.CharSequence value) { |
282 | 0 | this.vertexInId = value; |
283 | 0 | setDirty(2); |
284 | 0 | } |
285 | |
|
286 | |
|
287 | |
|
288 | |
|
289 | |
|
290 | |
|
291 | |
|
292 | |
public boolean isVertexInIdDirty(java.lang.CharSequence value) { |
293 | 0 | return isDirty(2); |
294 | |
} |
295 | |
|
296 | |
|
297 | |
|
298 | |
|
299 | |
|
300 | |
public java.lang.CharSequence getVertexOutId() { |
301 | 0 | return vertexOutId; |
302 | |
} |
303 | |
|
304 | |
|
305 | |
|
306 | |
|
307 | |
|
308 | |
public void setVertexOutId(java.lang.CharSequence value) { |
309 | 0 | this.vertexOutId = value; |
310 | 0 | setDirty(3); |
311 | 0 | } |
312 | |
|
313 | |
|
314 | |
|
315 | |
|
316 | |
|
317 | |
|
318 | |
|
319 | |
public boolean isVertexOutIdDirty(java.lang.CharSequence value) { |
320 | 0 | return isDirty(3); |
321 | |
} |
322 | |
|
323 | |
|
324 | |
|
325 | |
|
326 | |
|
327 | |
public java.lang.CharSequence getLabel() { |
328 | 0 | return label; |
329 | |
} |
330 | |
|
331 | |
|
332 | |
|
333 | |
|
334 | |
|
335 | |
public void setLabel(java.lang.CharSequence value) { |
336 | 0 | this.label = value; |
337 | 0 | setDirty(4); |
338 | 0 | } |
339 | |
|
340 | |
|
341 | |
|
342 | |
|
343 | |
|
344 | |
|
345 | |
|
346 | |
public boolean isLabelDirty(java.lang.CharSequence value) { |
347 | 0 | return isDirty(4); |
348 | |
} |
349 | |
|
350 | |
|
351 | |
|
352 | |
|
353 | |
|
354 | |
public static org.apache.giraph.io.gora.generated.GEdge.Builder newBuilder() { |
355 | 0 | return new org.apache.giraph.io.gora.generated.GEdge.Builder(); |
356 | |
} |
357 | |
|
358 | |
|
359 | |
|
360 | |
|
361 | |
|
362 | |
|
363 | |
public static org.apache.giraph.io.gora.generated.GEdge.Builder newBuilder( |
364 | |
org.apache.giraph.io.gora.generated.GEdge.Builder other) { |
365 | 0 | return new org.apache.giraph.io.gora.generated.GEdge.Builder(other); |
366 | |
} |
367 | |
|
368 | |
|
369 | |
|
370 | |
|
371 | |
|
372 | |
|
373 | |
public static org.apache.giraph.io.gora.generated.GEdge.Builder newBuilder( |
374 | |
org.apache.giraph.io.gora.generated.GEdge other) { |
375 | 0 | return new org.apache.giraph.io.gora.generated.GEdge.Builder(other); |
376 | |
} |
377 | |
|
378 | |
|
379 | |
|
380 | |
|
381 | |
|
382 | |
|
383 | |
private static java.nio.ByteBuffer deepCopyToReadOnlyBuffer( |
384 | |
java.nio.ByteBuffer input) { |
385 | 0 | java.nio.ByteBuffer copy = java.nio.ByteBuffer.allocate(input.capacity()); |
386 | 0 | int position = input.position(); |
387 | 0 | input.reset(); |
388 | 0 | int mark = input.position(); |
389 | 0 | int limit = input.limit(); |
390 | 0 | input.rewind(); |
391 | 0 | input.limit(input.capacity()); |
392 | 0 | copy.put(input); |
393 | 0 | input.rewind(); |
394 | 0 | copy.rewind(); |
395 | 0 | input.position(mark); |
396 | 0 | input.mark(); |
397 | 0 | copy.position(mark); |
398 | 0 | copy.mark(); |
399 | 0 | input.position(position); |
400 | 0 | copy.position(position); |
401 | 0 | input.limit(limit); |
402 | 0 | copy.limit(limit); |
403 | 0 | return copy.asReadOnlyBuffer(); |
404 | |
} |
405 | |
|
406 | |
|
407 | |
|
408 | |
|
409 | 0 | public static class Builder extends |
410 | |
org.apache.avro.specific.SpecificRecordBuilderBase<GEdge> implements |
411 | |
org.apache.avro.data.RecordBuilder<GEdge> { |
412 | |
|
413 | |
|
414 | |
|
415 | |
|
416 | |
private java.lang.CharSequence edgeId; |
417 | |
|
418 | |
|
419 | |
|
420 | |
|
421 | |
private float edgeWeight; |
422 | |
|
423 | |
|
424 | |
|
425 | |
|
426 | |
private java.lang.CharSequence vertexInId; |
427 | |
|
428 | |
|
429 | |
|
430 | |
|
431 | |
private java.lang.CharSequence vertexOutId; |
432 | |
|
433 | |
|
434 | |
|
435 | |
|
436 | |
private java.lang.CharSequence label; |
437 | |
|
438 | |
|
439 | |
|
440 | |
|
441 | |
private Builder() { |
442 | 0 | super(org.apache.giraph.io.gora.generated.GEdge.SCHEMAS); |
443 | 0 | } |
444 | |
|
445 | |
|
446 | |
|
447 | |
|
448 | |
|
449 | |
private Builder(org.apache.giraph.io.gora.generated.GEdge.Builder other) { |
450 | 0 | super(other); |
451 | 0 | } |
452 | |
|
453 | |
|
454 | |
|
455 | |
|
456 | |
|
457 | |
|
458 | |
private Builder(org.apache.giraph.io.gora.generated.GEdge other) { |
459 | 0 | super(org.apache.giraph.io.gora.generated.GEdge.SCHEMAS); |
460 | 0 | if (isValidValue(fields()[0], other.edgeId)) { |
461 | 0 | this.edgeId = (java.lang.CharSequence) data().deepCopy( |
462 | 0 | fields()[0].schema(), other.edgeId); |
463 | 0 | fieldSetFlags()[0] = true; |
464 | |
} |
465 | 0 | if (isValidValue(fields()[1], other.edgeWeight)) { |
466 | 0 | this.edgeWeight = (java.lang.Float) data().deepCopy( |
467 | 0 | fields()[1].schema(), other.edgeWeight); |
468 | 0 | fieldSetFlags()[1] = true; |
469 | |
} |
470 | 0 | if (isValidValue(fields()[2], other.vertexInId)) { |
471 | 0 | this.vertexInId = (java.lang.CharSequence) data().deepCopy( |
472 | 0 | fields()[2].schema(), other.vertexInId); |
473 | 0 | fieldSetFlags()[2] = true; |
474 | |
} |
475 | 0 | if (isValidValue(fields()[3], other.vertexOutId)) { |
476 | 0 | this.vertexOutId = (java.lang.CharSequence) data().deepCopy( |
477 | 0 | fields()[3].schema(), other.vertexOutId); |
478 | 0 | fieldSetFlags()[3] = true; |
479 | |
} |
480 | 0 | if (isValidValue(fields()[4], other.label)) { |
481 | 0 | this.label = (java.lang.CharSequence) data().deepCopy( |
482 | 0 | fields()[4].schema(), other.label); |
483 | 0 | fieldSetFlags()[4] = true; |
484 | |
} |
485 | 0 | } |
486 | |
|
487 | |
|
488 | |
|
489 | |
|
490 | |
|
491 | |
|
492 | |
public java.lang.CharSequence getEdgeId() { |
493 | 0 | return edgeId; |
494 | |
} |
495 | |
|
496 | |
|
497 | |
|
498 | |
|
499 | |
|
500 | |
|
501 | |
|
502 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder setEdgeId( |
503 | |
java.lang.CharSequence value) { |
504 | 0 | validate(fields()[0], value); |
505 | 0 | this.edgeId = value; |
506 | 0 | fieldSetFlags()[0] = true; |
507 | 0 | return this; |
508 | |
} |
509 | |
|
510 | |
|
511 | |
|
512 | |
|
513 | |
|
514 | |
|
515 | |
public boolean hasEdgeId() { |
516 | 0 | return fieldSetFlags()[0]; |
517 | |
} |
518 | |
|
519 | |
|
520 | |
|
521 | |
|
522 | |
|
523 | |
|
524 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder clearEdgeId() { |
525 | 0 | edgeId = null; |
526 | 0 | fieldSetFlags()[0] = false; |
527 | 0 | return this; |
528 | |
} |
529 | |
|
530 | |
|
531 | |
|
532 | |
|
533 | |
|
534 | |
|
535 | |
public java.lang.Float getEdgeWeight() { |
536 | 0 | return edgeWeight; |
537 | |
} |
538 | |
|
539 | |
|
540 | |
|
541 | |
|
542 | |
|
543 | |
|
544 | |
|
545 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder setEdgeWeight( |
546 | |
float value) { |
547 | 0 | validate(fields()[1], value); |
548 | 0 | this.edgeWeight = value; |
549 | 0 | fieldSetFlags()[1] = true; |
550 | 0 | return this; |
551 | |
} |
552 | |
|
553 | |
|
554 | |
|
555 | |
|
556 | |
|
557 | |
|
558 | |
public boolean hasEdgeWeight() { |
559 | 0 | return fieldSetFlags()[1]; |
560 | |
} |
561 | |
|
562 | |
|
563 | |
|
564 | |
|
565 | |
|
566 | |
|
567 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder clearEdgeWeight() { |
568 | 0 | fieldSetFlags()[1] = false; |
569 | 0 | return this; |
570 | |
} |
571 | |
|
572 | |
|
573 | |
|
574 | |
|
575 | |
|
576 | |
|
577 | |
public java.lang.CharSequence getVertexInId() { |
578 | 0 | return vertexInId; |
579 | |
} |
580 | |
|
581 | |
|
582 | |
|
583 | |
|
584 | |
|
585 | |
|
586 | |
|
587 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder setVertexInId( |
588 | |
java.lang.CharSequence value) { |
589 | 0 | validate(fields()[2], value); |
590 | 0 | this.vertexInId = value; |
591 | 0 | fieldSetFlags()[2] = true; |
592 | 0 | return this; |
593 | |
} |
594 | |
|
595 | |
|
596 | |
|
597 | |
|
598 | |
|
599 | |
|
600 | |
public boolean hasVertexInId() { |
601 | 0 | return fieldSetFlags()[2]; |
602 | |
} |
603 | |
|
604 | |
|
605 | |
|
606 | |
|
607 | |
|
608 | |
|
609 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder |
610 | |
clearVertexInId() { |
611 | 0 | vertexInId = null; |
612 | 0 | fieldSetFlags()[2] = false; |
613 | 0 | return this; |
614 | |
} |
615 | |
|
616 | |
|
617 | |
|
618 | |
|
619 | |
|
620 | |
|
621 | |
public java.lang.CharSequence getVertexOutId() { |
622 | 0 | return vertexOutId; |
623 | |
} |
624 | |
|
625 | |
|
626 | |
|
627 | |
|
628 | |
|
629 | |
|
630 | |
|
631 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder setVertexOutId( |
632 | |
java.lang.CharSequence value) { |
633 | 0 | validate(fields()[3], value); |
634 | 0 | this.vertexOutId = value; |
635 | 0 | fieldSetFlags()[3] = true; |
636 | 0 | return this; |
637 | |
} |
638 | |
|
639 | |
|
640 | |
|
641 | |
|
642 | |
|
643 | |
|
644 | |
public boolean hasVertexOutId() { |
645 | 0 | return fieldSetFlags()[3]; |
646 | |
} |
647 | |
|
648 | |
|
649 | |
|
650 | |
|
651 | |
|
652 | |
|
653 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder |
654 | |
clearVertexOutId() { |
655 | 0 | vertexOutId = null; |
656 | 0 | fieldSetFlags()[3] = false; |
657 | 0 | return this; |
658 | |
} |
659 | |
|
660 | |
|
661 | |
|
662 | |
|
663 | |
|
664 | |
|
665 | |
public java.lang.CharSequence getLabel() { |
666 | 0 | return label; |
667 | |
} |
668 | |
|
669 | |
|
670 | |
|
671 | |
|
672 | |
|
673 | |
|
674 | |
|
675 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder setLabel( |
676 | |
java.lang.CharSequence value) { |
677 | 0 | validate(fields()[4], value); |
678 | 0 | this.label = value; |
679 | 0 | fieldSetFlags()[4] = true; |
680 | 0 | return this; |
681 | |
} |
682 | |
|
683 | |
|
684 | |
|
685 | |
|
686 | |
|
687 | |
|
688 | |
public boolean hasLabel() { |
689 | 0 | return fieldSetFlags()[4]; |
690 | |
} |
691 | |
|
692 | |
|
693 | |
|
694 | |
|
695 | |
|
696 | |
|
697 | |
public org.apache.giraph.io.gora.generated.GEdge.Builder clearLabel() { |
698 | 0 | label = null; |
699 | 0 | fieldSetFlags()[4] = false; |
700 | 0 | return this; |
701 | |
} |
702 | |
|
703 | |
|
704 | |
@Override |
705 | |
|
706 | |
|
707 | |
|
708 | |
|
709 | |
|
710 | |
public GEdge build() { |
711 | |
try { |
712 | 0 | GEdge record = new GEdge(); |
713 | 0 | record.edgeId = fieldSetFlags()[0] ? this.edgeId : |
714 | 0 | (java.lang.CharSequence) defaultValue(fields()[0]); |
715 | 0 | record.edgeWeight = fieldSetFlags()[1] ? this.edgeWeight : |
716 | 0 | (java.lang.Float) defaultValue(fields()[1]); |
717 | 0 | record.vertexInId = fieldSetFlags()[2] ? this.vertexInId : |
718 | 0 | (java.lang.CharSequence) defaultValue(fields()[2]); |
719 | 0 | record.vertexOutId = fieldSetFlags()[3] ? this.vertexOutId : |
720 | 0 | (java.lang.CharSequence) defaultValue(fields()[3]); |
721 | 0 | record.label = fieldSetFlags()[4] ? this.label : |
722 | 0 | (java.lang.CharSequence) defaultValue(fields()[4]); |
723 | 0 | return record; |
724 | 0 | } catch (Exception e) { |
725 | 0 | throw new org.apache.avro.AvroRuntimeException(e); |
726 | |
} |
727 | |
} |
728 | |
|
729 | |
} |
730 | |
|
731 | |
|
732 | |
|
733 | |
|
734 | |
|
735 | |
public GEdge.Tombstone getTombstone() { |
736 | 0 | return TOMBSTONE; |
737 | |
} |
738 | |
|
739 | |
|
740 | |
|
741 | |
|
742 | |
|
743 | |
public GEdge newInstance() { |
744 | 0 | return newBuilder().build(); |
745 | |
} |
746 | |
|
747 | |
|
748 | |
|
749 | |
|
750 | 0 | public static final class Tombstone extends GEdge implements |
751 | |
org.apache.gora.persistency.Tombstone { |
752 | |
|
753 | |
|
754 | |
|
755 | |
|
756 | 0 | private Tombstone() { |
757 | 0 | } |
758 | |
|
759 | |
|
760 | |
|
761 | |
|
762 | |
|
763 | |
public java.lang.CharSequence getEdgeId() { |
764 | 0 | throw new java.lang.UnsupportedOperationException( |
765 | |
"Get is not supported on tombstones"); |
766 | |
} |
767 | |
|
768 | |
|
769 | |
|
770 | |
|
771 | |
|
772 | |
public void setEdgeId(java.lang.CharSequence value) { |
773 | 0 | throw new java.lang.UnsupportedOperationException( |
774 | |
"Set is not supported on tombstones"); |
775 | |
} |
776 | |
|
777 | |
|
778 | |
|
779 | |
|
780 | |
|
781 | |
|
782 | |
|
783 | |
public boolean isEdgeIdDirty(java.lang.CharSequence value) { |
784 | 0 | throw new java.lang.UnsupportedOperationException( |
785 | |
"IsDirty is not supported on tombstones"); |
786 | |
} |
787 | |
|
788 | |
|
789 | |
|
790 | |
|
791 | |
|
792 | |
public java.lang.Float getEdgeWeight() { |
793 | 0 | throw new java.lang.UnsupportedOperationException( |
794 | |
"Get is not supported on tombstones"); |
795 | |
} |
796 | |
|
797 | |
|
798 | |
|
799 | |
|
800 | |
|
801 | |
public void setEdgeWeight(java.lang.Float value) { |
802 | 0 | throw new java.lang.UnsupportedOperationException( |
803 | |
"Set is not supported on tombstones"); |
804 | |
} |
805 | |
|
806 | |
|
807 | |
|
808 | |
|
809 | |
|
810 | |
|
811 | |
|
812 | |
public boolean isEdgeWeightDirty(java.lang.Float value) { |
813 | 0 | throw new java.lang.UnsupportedOperationException( |
814 | |
"IsDirty is not supported on tombstones"); |
815 | |
} |
816 | |
|
817 | |
|
818 | |
|
819 | |
|
820 | |
|
821 | |
public java.lang.CharSequence getVertexInId() { |
822 | 0 | throw new java.lang.UnsupportedOperationException( |
823 | |
"Get is not supported on tombstones"); |
824 | |
} |
825 | |
|
826 | |
|
827 | |
|
828 | |
|
829 | |
|
830 | |
public void setVertexInId(java.lang.CharSequence value) { |
831 | 0 | throw new java.lang.UnsupportedOperationException( |
832 | |
"Set is not supported on tombstones"); |
833 | |
} |
834 | |
|
835 | |
|
836 | |
|
837 | |
|
838 | |
|
839 | |
|
840 | |
|
841 | |
public boolean isVertexInIdDirty(java.lang.CharSequence value) { |
842 | 0 | throw new java.lang.UnsupportedOperationException( |
843 | |
"IsDirty is not supported on tombstones"); |
844 | |
} |
845 | |
|
846 | |
|
847 | |
|
848 | |
|
849 | |
|
850 | |
public java.lang.CharSequence getVertexOutId() { |
851 | 0 | throw new java.lang.UnsupportedOperationException( |
852 | |
"Get is not supported on tombstones"); |
853 | |
} |
854 | |
|
855 | |
|
856 | |
|
857 | |
|
858 | |
|
859 | |
public void setVertexOutId(java.lang.CharSequence value) { |
860 | 0 | throw new java.lang.UnsupportedOperationException( |
861 | |
"Set is not supported on tombstones"); |
862 | |
} |
863 | |
|
864 | |
|
865 | |
|
866 | |
|
867 | |
|
868 | |
|
869 | |
|
870 | |
public boolean isVertexOutIdDirty(java.lang.CharSequence value) { |
871 | 0 | throw new java.lang.UnsupportedOperationException( |
872 | |
"IsDirty is not supported on tombstones"); |
873 | |
} |
874 | |
|
875 | |
|
876 | |
|
877 | |
|
878 | |
|
879 | |
public java.lang.CharSequence getLabel() { |
880 | 0 | throw new java.lang.UnsupportedOperationException( |
881 | |
"Get is not supported on tombstones"); |
882 | |
} |
883 | |
|
884 | |
|
885 | |
|
886 | |
|
887 | |
|
888 | |
public void setLabel(java.lang.CharSequence value) { |
889 | 0 | throw new java.lang.UnsupportedOperationException( |
890 | |
"Set is not supported on tombstones"); |
891 | |
} |
892 | |
|
893 | |
|
894 | |
|
895 | |
|
896 | |
|
897 | |
|
898 | |
|
899 | |
public boolean isLabelDirty(java.lang.CharSequence value) { |
900 | 0 | throw new java.lang.UnsupportedOperationException( |
901 | |
"IsDirty is not supported on tombstones"); |
902 | |
} |
903 | |
} |
904 | |
} |