Changeset 31905 in osm for applications/editors/josm/plugins/pbf/gen/crosby/binary/Osmformat.java
- Timestamp:
- 2016-01-02T01:30:50+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/pbf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf
- Property svn:externals
-
old new 1 1 proto https://github.com/scrosby/OSM-binary/trunk/src 2 protobuf http ://protobuf.googlecode.com/svn/tags/2.6.0/src/google/protobuf/2 protobuf https://github.com/google/protobuf/tags/v2.6.1/src/google/protobuf/
-
- Property svn:externals
-
applications/editors/josm/plugins/pbf/gen/crosby/binary/Osmformat.java
r30737 r31905 26 26 * 27 27 * <pre> 28 * Additional tags to aid in parsing this dataset 28 * Additional tags to aid in parsing this dataset 29 29 * </pre> 30 30 */ … … 35 35 * 36 36 * <pre> 37 * Additional tags to aid in parsing this dataset 37 * Additional tags to aid in parsing this dataset 38 38 * </pre> 39 39 */ … … 43 43 * 44 44 * <pre> 45 * Additional tags to aid in parsing this dataset 45 * Additional tags to aid in parsing this dataset 46 46 * </pre> 47 47 */ … … 51 51 * 52 52 * <pre> 53 * Additional tags to aid in parsing this dataset 53 * Additional tags to aid in parsing this dataset 54 54 * </pre> 55 55 */ … … 120 120 * 121 121 * <pre> 122 * replication timestamp, expressed in seconds since the epoch, 122 * replication timestamp, expressed in seconds since the epoch, 123 123 * otherwise the same value as in the "timestamp=..." field 124 124 * in the state.txt file used by Osmosis … … 130 130 * 131 131 * <pre> 132 * replication timestamp, expressed in seconds since the epoch, 132 * replication timestamp, expressed in seconds since the epoch, 133 133 * otherwise the same value as in the "timestamp=..." field 134 134 * in the state.txt file used by Osmosis … … 199 199 } 200 200 201 public HeaderBlock getDefaultInstanceForType() { 201 @Override 202 public HeaderBlock getDefaultInstanceForType() { 202 203 return defaultInstance; 203 204 } … … 315 316 public static com.google.protobuf.Parser<HeaderBlock> PARSER = 316 317 new com.google.protobuf.AbstractParser<HeaderBlock>() { 317 public HeaderBlock parsePartialFrom( 318 @Override 319 public HeaderBlock parsePartialFrom( 318 320 com.google.protobuf.CodedInputStream input, 319 321 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 334 336 * <code>optional .OSMPBF.HeaderBBox bbox = 1;</code> 335 337 */ 336 public boolean hasBbox() { 338 @Override 339 public boolean hasBbox() { 337 340 return ((bitField0_ & 0x00000001) == 0x00000001); 338 341 } … … 340 343 * <code>optional .OSMPBF.HeaderBBox bbox = 1;</code> 341 344 */ 342 public crosby.binary.Osmformat.HeaderBBox getBbox() { 345 @Override 346 public crosby.binary.Osmformat.HeaderBBox getBbox() { 343 347 return bbox_; 344 348 } … … 350 354 * 351 355 * <pre> 352 * Additional tags to aid in parsing this dataset 353 * </pre> 354 */ 355 public com.google.protobuf.ProtocolStringList 356 * Additional tags to aid in parsing this dataset 357 * </pre> 358 */ 359 @Override 360 public com.google.protobuf.ProtocolStringList 356 361 getRequiredFeaturesList() { 357 362 return requiredFeatures_; … … 361 366 * 362 367 * <pre> 363 * Additional tags to aid in parsing this dataset 364 * </pre> 365 */ 366 public int getRequiredFeaturesCount() { 368 * Additional tags to aid in parsing this dataset 369 * </pre> 370 */ 371 @Override 372 public int getRequiredFeaturesCount() { 367 373 return requiredFeatures_.size(); 368 374 } … … 371 377 * 372 378 * <pre> 373 * Additional tags to aid in parsing this dataset 374 * </pre> 375 */ 376 public java.lang.String getRequiredFeatures(int index) { 379 * Additional tags to aid in parsing this dataset 380 * </pre> 381 */ 382 @Override 383 public java.lang.String getRequiredFeatures(int index) { 377 384 return requiredFeatures_.get(index); 378 385 } … … 381 388 * 382 389 * <pre> 383 * Additional tags to aid in parsing this dataset 384 * </pre> 385 */ 386 public com.google.protobuf.ByteString 390 * Additional tags to aid in parsing this dataset 391 * </pre> 392 */ 393 @Override 394 public com.google.protobuf.ByteString 387 395 getRequiredFeaturesBytes(int index) { 388 396 return requiredFeatures_.getByteString(index); … … 394 402 * <code>repeated string optional_features = 5;</code> 395 403 */ 396 public com.google.protobuf.ProtocolStringList 404 @Override 405 public com.google.protobuf.ProtocolStringList 397 406 getOptionalFeaturesList() { 398 407 return optionalFeatures_; … … 401 410 * <code>repeated string optional_features = 5;</code> 402 411 */ 403 public int getOptionalFeaturesCount() { 412 @Override 413 public int getOptionalFeaturesCount() { 404 414 return optionalFeatures_.size(); 405 415 } … … 407 417 * <code>repeated string optional_features = 5;</code> 408 418 */ 409 public java.lang.String getOptionalFeatures(int index) { 419 @Override 420 public java.lang.String getOptionalFeatures(int index) { 410 421 return optionalFeatures_.get(index); 411 422 } … … 413 424 * <code>repeated string optional_features = 5;</code> 414 425 */ 415 public com.google.protobuf.ByteString 426 @Override 427 public com.google.protobuf.ByteString 416 428 getOptionalFeaturesBytes(int index) { 417 429 return optionalFeatures_.getByteString(index); … … 423 435 * <code>optional string writingprogram = 16;</code> 424 436 */ 425 public boolean hasWritingprogram() { 437 @Override 438 public boolean hasWritingprogram() { 426 439 return ((bitField0_ & 0x00000002) == 0x00000002); 427 440 } … … 429 442 * <code>optional string writingprogram = 16;</code> 430 443 */ 431 public java.lang.String getWritingprogram() { 444 @Override 445 public java.lang.String getWritingprogram() { 432 446 java.lang.Object ref = writingprogram_; 433 447 if (ref instanceof java.lang.String) { 434 448 return (java.lang.String) ref; 435 449 } else { 436 com.google.protobuf.ByteString bs = 450 com.google.protobuf.ByteString bs = 437 451 (com.google.protobuf.ByteString) ref; 438 452 java.lang.String s = bs.toStringUtf8(); … … 446 460 * <code>optional string writingprogram = 16;</code> 447 461 */ 448 public com.google.protobuf.ByteString 462 @Override 463 public com.google.protobuf.ByteString 449 464 getWritingprogramBytes() { 450 465 java.lang.Object ref = writingprogram_; 451 466 if (ref instanceof java.lang.String) { 452 com.google.protobuf.ByteString b = 467 com.google.protobuf.ByteString b = 453 468 com.google.protobuf.ByteString.copyFromUtf8( 454 469 (java.lang.String) ref); … … 469 484 * </pre> 470 485 */ 471 public boolean hasSource() { 486 @Override 487 public boolean hasSource() { 472 488 return ((bitField0_ & 0x00000004) == 0x00000004); 473 489 } … … 479 495 * </pre> 480 496 */ 481 public java.lang.String getSource() { 497 @Override 498 public java.lang.String getSource() { 482 499 java.lang.Object ref = source_; 483 500 if (ref instanceof java.lang.String) { 484 501 return (java.lang.String) ref; 485 502 } else { 486 com.google.protobuf.ByteString bs = 503 com.google.protobuf.ByteString bs = 487 504 (com.google.protobuf.ByteString) ref; 488 505 java.lang.String s = bs.toStringUtf8(); … … 500 517 * </pre> 501 518 */ 502 public com.google.protobuf.ByteString 519 @Override 520 public com.google.protobuf.ByteString 503 521 getSourceBytes() { 504 522 java.lang.Object ref = source_; 505 523 if (ref instanceof java.lang.String) { 506 com.google.protobuf.ByteString b = 524 com.google.protobuf.ByteString b = 507 525 com.google.protobuf.ByteString.copyFromUtf8( 508 526 (java.lang.String) ref); … … 520 538 * 521 539 * <pre> 522 * replication timestamp, expressed in seconds since the epoch, 540 * replication timestamp, expressed in seconds since the epoch, 523 541 * otherwise the same value as in the "timestamp=..." field 524 542 * in the state.txt file used by Osmosis 525 543 * </pre> 526 544 */ 527 public boolean hasOsmosisReplicationTimestamp() { 545 @Override 546 public boolean hasOsmosisReplicationTimestamp() { 528 547 return ((bitField0_ & 0x00000008) == 0x00000008); 529 548 } … … 532 551 * 533 552 * <pre> 534 * replication timestamp, expressed in seconds since the epoch, 553 * replication timestamp, expressed in seconds since the epoch, 535 554 * otherwise the same value as in the "timestamp=..." field 536 555 * in the state.txt file used by Osmosis 537 556 * </pre> 538 557 */ 539 public long getOsmosisReplicationTimestamp() { 558 @Override 559 public long getOsmosisReplicationTimestamp() { 540 560 return osmosisReplicationTimestamp_; 541 561 } … … 550 570 * </pre> 551 571 */ 552 public boolean hasOsmosisReplicationSequenceNumber() { 572 @Override 573 public boolean hasOsmosisReplicationSequenceNumber() { 553 574 return ((bitField0_ & 0x00000010) == 0x00000010); 554 575 } … … 560 581 * </pre> 561 582 */ 562 public long getOsmosisReplicationSequenceNumber() { 583 @Override 584 public long getOsmosisReplicationSequenceNumber() { 563 585 return osmosisReplicationSequenceNumber_; 564 586 } … … 573 595 * </pre> 574 596 */ 575 public boolean hasOsmosisReplicationBaseUrl() { 597 @Override 598 public boolean hasOsmosisReplicationBaseUrl() { 576 599 return ((bitField0_ & 0x00000020) == 0x00000020); 577 600 } … … 583 606 * </pre> 584 607 */ 585 public java.lang.String getOsmosisReplicationBaseUrl() { 608 @Override 609 public java.lang.String getOsmosisReplicationBaseUrl() { 586 610 java.lang.Object ref = osmosisReplicationBaseUrl_; 587 611 if (ref instanceof java.lang.String) { 588 612 return (java.lang.String) ref; 589 613 } else { 590 com.google.protobuf.ByteString bs = 614 com.google.protobuf.ByteString bs = 591 615 (com.google.protobuf.ByteString) ref; 592 616 java.lang.String s = bs.toStringUtf8(); … … 604 628 * </pre> 605 629 */ 606 public com.google.protobuf.ByteString 630 @Override 631 public com.google.protobuf.ByteString 607 632 getOsmosisReplicationBaseUrlBytes() { 608 633 java.lang.Object ref = osmosisReplicationBaseUrl_; 609 634 if (ref instanceof java.lang.String) { 610 com.google.protobuf.ByteString b = 635 com.google.protobuf.ByteString b = 611 636 com.google.protobuf.ByteString.copyFromUtf8( 612 637 (java.lang.String) ref); … … 629 654 } 630 655 private byte memoizedIsInitialized = -1; 631 public final boolean isInitialized() { 656 @Override 657 public final boolean isInitialized() { 632 658 byte isInitialized = memoizedIsInitialized; 633 659 if (isInitialized == 1) return true; … … 644 670 } 645 671 646 public void writeTo(com.google.protobuf.CodedOutputStream output) 672 @Override 673 public void writeTo(com.google.protobuf.CodedOutputStream output) 647 674 throws java.io.IOException { 648 675 getSerializedSize(); … … 675 702 676 703 private int memoizedSerializedSize = -1; 677 public int getSerializedSize() { 704 @Override 705 public int getSerializedSize() { 678 706 int size = memoizedSerializedSize; 679 707 if (size != -1) return size; … … 788 816 789 817 public static Builder newBuilder() { return Builder.create(); } 790 public Builder newBuilderForType() { return newBuilder(); } 818 @Override 819 public Builder newBuilderForType() { return newBuilder(); } 791 820 public static Builder newBuilder(crosby.binary.Osmformat.HeaderBlock prototype) { 792 821 return newBuilder().mergeFrom(prototype); 793 822 } 794 public Builder toBuilder() { return newBuilder(this); } 823 @Override 824 public Builder toBuilder() { return newBuilder(this); } 795 825 796 826 /** … … 814 844 } 815 845 816 public Builder clear() { 846 @Override 847 public Builder clear() { 817 848 super.clear(); 818 849 bbox_ = crosby.binary.Osmformat.HeaderBBox.getDefaultInstance(); … … 835 866 } 836 867 837 public Builder clone() { 868 @Override 869 public Builder clone() { 838 870 return create().mergeFrom(buildPartial()); 839 871 } 840 872 841 public crosby.binary.Osmformat.HeaderBlock getDefaultInstanceForType() { 873 @Override 874 public crosby.binary.Osmformat.HeaderBlock getDefaultInstanceForType() { 842 875 return crosby.binary.Osmformat.HeaderBlock.getDefaultInstance(); 843 876 } 844 877 845 public crosby.binary.Osmformat.HeaderBlock build() { 878 @Override 879 public crosby.binary.Osmformat.HeaderBlock build() { 846 880 crosby.binary.Osmformat.HeaderBlock result = buildPartial(); 847 881 if (!result.isInitialized()) { … … 851 885 } 852 886 853 public crosby.binary.Osmformat.HeaderBlock buildPartial() { 887 @Override 888 public crosby.binary.Osmformat.HeaderBlock buildPartial() { 854 889 crosby.binary.Osmformat.HeaderBlock result = new crosby.binary.Osmformat.HeaderBlock(this); 855 890 int from_bitField0_ = bitField0_; … … 893 928 } 894 929 895 public Builder mergeFrom(crosby.binary.Osmformat.HeaderBlock other) { 930 @Override 931 public Builder mergeFrom(crosby.binary.Osmformat.HeaderBlock other) { 896 932 if (other == crosby.binary.Osmformat.HeaderBlock.getDefaultInstance()) return this; 897 933 if (other.hasBbox()) { … … 906 942 requiredFeatures_.addAll(other.requiredFeatures_); 907 943 } 908 944 909 945 } 910 946 if (!other.optionalFeatures_.isEmpty()) { … … 916 952 optionalFeatures_.addAll(other.optionalFeatures_); 917 953 } 918 954 919 955 } 920 956 if (other.hasWritingprogram()) { 921 957 bitField0_ |= 0x00000008; 922 958 writingprogram_ = other.writingprogram_; 923 959 924 960 } 925 961 if (other.hasSource()) { 926 962 bitField0_ |= 0x00000010; 927 963 source_ = other.source_; 928 964 929 965 } 930 966 if (other.hasOsmosisReplicationTimestamp()) { … … 937 973 bitField0_ |= 0x00000080; 938 974 osmosisReplicationBaseUrl_ = other.osmosisReplicationBaseUrl_; 939 975 940 976 } 941 977 setUnknownFields( … … 944 980 } 945 981 946 public final boolean isInitialized() { 982 @Override 983 public final boolean isInitialized() { 947 984 if (hasBbox()) { 948 985 if (!getBbox().isInitialized()) { 949 986 950 987 return false; 951 988 } … … 954 991 } 955 992 956 public Builder mergeFrom( 993 @Override 994 public Builder mergeFrom( 957 995 com.google.protobuf.CodedInputStream input, 958 996 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 977 1015 * <code>optional .OSMPBF.HeaderBBox bbox = 1;</code> 978 1016 */ 979 public boolean hasBbox() { 1017 @Override 1018 public boolean hasBbox() { 980 1019 return ((bitField0_ & 0x00000001) == 0x00000001); 981 1020 } … … 983 1022 * <code>optional .OSMPBF.HeaderBBox bbox = 1;</code> 984 1023 */ 985 public crosby.binary.Osmformat.HeaderBBox getBbox() { 1024 @Override 1025 public crosby.binary.Osmformat.HeaderBBox getBbox() { 986 1026 return bbox_; 987 1027 } … … 1044 1084 * 1045 1085 * <pre> 1046 * Additional tags to aid in parsing this dataset 1047 * </pre> 1048 */ 1049 public com.google.protobuf.ProtocolStringList 1086 * Additional tags to aid in parsing this dataset 1087 * </pre> 1088 */ 1089 @Override 1090 public com.google.protobuf.ProtocolStringList 1050 1091 getRequiredFeaturesList() { 1051 1092 return requiredFeatures_.getUnmodifiableView(); … … 1055 1096 * 1056 1097 * <pre> 1057 * Additional tags to aid in parsing this dataset 1058 * </pre> 1059 */ 1060 public int getRequiredFeaturesCount() { 1098 * Additional tags to aid in parsing this dataset 1099 * </pre> 1100 */ 1101 @Override 1102 public int getRequiredFeaturesCount() { 1061 1103 return requiredFeatures_.size(); 1062 1104 } … … 1065 1107 * 1066 1108 * <pre> 1067 * Additional tags to aid in parsing this dataset 1068 * </pre> 1069 */ 1070 public java.lang.String getRequiredFeatures(int index) { 1109 * Additional tags to aid in parsing this dataset 1110 * </pre> 1111 */ 1112 @Override 1113 public java.lang.String getRequiredFeatures(int index) { 1071 1114 return requiredFeatures_.get(index); 1072 1115 } … … 1075 1118 * 1076 1119 * <pre> 1077 * Additional tags to aid in parsing this dataset 1078 * </pre> 1079 */ 1080 public com.google.protobuf.ByteString 1120 * Additional tags to aid in parsing this dataset 1121 * </pre> 1122 */ 1123 @Override 1124 public com.google.protobuf.ByteString 1081 1125 getRequiredFeaturesBytes(int index) { 1082 1126 return requiredFeatures_.getByteString(index); … … 1086 1130 * 1087 1131 * <pre> 1088 * Additional tags to aid in parsing this dataset 1132 * Additional tags to aid in parsing this dataset 1089 1133 * </pre> 1090 1134 */ … … 1096 1140 ensureRequiredFeaturesIsMutable(); 1097 1141 requiredFeatures_.set(index, value); 1098 1142 1099 1143 return this; 1100 1144 } … … 1103 1147 * 1104 1148 * <pre> 1105 * Additional tags to aid in parsing this dataset 1149 * Additional tags to aid in parsing this dataset 1106 1150 * </pre> 1107 1151 */ … … 1113 1157 ensureRequiredFeaturesIsMutable(); 1114 1158 requiredFeatures_.add(value); 1115 1159 1116 1160 return this; 1117 1161 } … … 1120 1164 * 1121 1165 * <pre> 1122 * Additional tags to aid in parsing this dataset 1166 * Additional tags to aid in parsing this dataset 1123 1167 * </pre> 1124 1168 */ … … 1128 1172 com.google.protobuf.AbstractMessageLite.Builder.addAll( 1129 1173 values, requiredFeatures_); 1130 1174 1131 1175 return this; 1132 1176 } … … 1135 1179 * 1136 1180 * <pre> 1137 * Additional tags to aid in parsing this dataset 1181 * Additional tags to aid in parsing this dataset 1138 1182 * </pre> 1139 1183 */ … … 1141 1185 requiredFeatures_ = com.google.protobuf.LazyStringArrayList.EMPTY; 1142 1186 bitField0_ = (bitField0_ & ~0x00000002); 1143 1187 1144 1188 return this; 1145 1189 } … … 1148 1192 * 1149 1193 * <pre> 1150 * Additional tags to aid in parsing this dataset 1194 * Additional tags to aid in parsing this dataset 1151 1195 * </pre> 1152 1196 */ … … 1158 1202 ensureRequiredFeaturesIsMutable(); 1159 1203 requiredFeatures_.add(value); 1160 1204 1161 1205 return this; 1162 1206 } … … 1172 1216 * <code>repeated string optional_features = 5;</code> 1173 1217 */ 1174 public com.google.protobuf.ProtocolStringList 1218 @Override 1219 public com.google.protobuf.ProtocolStringList 1175 1220 getOptionalFeaturesList() { 1176 1221 return optionalFeatures_.getUnmodifiableView(); … … 1179 1224 * <code>repeated string optional_features = 5;</code> 1180 1225 */ 1181 public int getOptionalFeaturesCount() { 1226 @Override 1227 public int getOptionalFeaturesCount() { 1182 1228 return optionalFeatures_.size(); 1183 1229 } … … 1185 1231 * <code>repeated string optional_features = 5;</code> 1186 1232 */ 1187 public java.lang.String getOptionalFeatures(int index) { 1233 @Override 1234 public java.lang.String getOptionalFeatures(int index) { 1188 1235 return optionalFeatures_.get(index); 1189 1236 } … … 1191 1238 * <code>repeated string optional_features = 5;</code> 1192 1239 */ 1193 public com.google.protobuf.ByteString 1240 @Override 1241 public com.google.protobuf.ByteString 1194 1242 getOptionalFeaturesBytes(int index) { 1195 1243 return optionalFeatures_.getByteString(index); … … 1205 1253 ensureOptionalFeaturesIsMutable(); 1206 1254 optionalFeatures_.set(index, value); 1207 1255 1208 1256 return this; 1209 1257 } … … 1218 1266 ensureOptionalFeaturesIsMutable(); 1219 1267 optionalFeatures_.add(value); 1220 1268 1221 1269 return this; 1222 1270 } … … 1229 1277 com.google.protobuf.AbstractMessageLite.Builder.addAll( 1230 1278 values, optionalFeatures_); 1231 1279 1232 1280 return this; 1233 1281 } … … 1238 1286 optionalFeatures_ = com.google.protobuf.LazyStringArrayList.EMPTY; 1239 1287 bitField0_ = (bitField0_ & ~0x00000004); 1240 1288 1241 1289 return this; 1242 1290 } … … 1251 1299 ensureOptionalFeaturesIsMutable(); 1252 1300 optionalFeatures_.add(value); 1253 1301 1254 1302 return this; 1255 1303 } … … 1259 1307 * <code>optional string writingprogram = 16;</code> 1260 1308 */ 1261 public boolean hasWritingprogram() { 1309 @Override 1310 public boolean hasWritingprogram() { 1262 1311 return ((bitField0_ & 0x00000008) == 0x00000008); 1263 1312 } … … 1265 1314 * <code>optional string writingprogram = 16;</code> 1266 1315 */ 1267 public java.lang.String getWritingprogram() { 1316 @Override 1317 public java.lang.String getWritingprogram() { 1268 1318 java.lang.Object ref = writingprogram_; 1269 1319 if (!(ref instanceof java.lang.String)) { … … 1282 1332 * <code>optional string writingprogram = 16;</code> 1283 1333 */ 1284 public com.google.protobuf.ByteString 1334 @Override 1335 public com.google.protobuf.ByteString 1285 1336 getWritingprogramBytes() { 1286 1337 java.lang.Object ref = writingprogram_; 1287 1338 if (ref instanceof String) { 1288 com.google.protobuf.ByteString b = 1339 com.google.protobuf.ByteString b = 1289 1340 com.google.protobuf.ByteString.copyFromUtf8( 1290 1341 (java.lang.String) ref); … … 1305 1356 bitField0_ |= 0x00000008; 1306 1357 writingprogram_ = value; 1307 1358 1308 1359 return this; 1309 1360 } … … 1314 1365 bitField0_ = (bitField0_ & ~0x00000008); 1315 1366 writingprogram_ = getDefaultInstance().getWritingprogram(); 1316 1367 1317 1368 return this; 1318 1369 } … … 1327 1378 bitField0_ |= 0x00000008; 1328 1379 writingprogram_ = value; 1329 1380 1330 1381 return this; 1331 1382 } … … 1339 1390 * </pre> 1340 1391 */ 1341 public boolean hasSource() { 1392 @Override 1393 public boolean hasSource() { 1342 1394 return ((bitField0_ & 0x00000010) == 0x00000010); 1343 1395 } … … 1349 1401 * </pre> 1350 1402 */ 1351 public java.lang.String getSource() { 1403 @Override 1404 public java.lang.String getSource() { 1352 1405 java.lang.Object ref = source_; 1353 1406 if (!(ref instanceof java.lang.String)) { … … 1370 1423 * </pre> 1371 1424 */ 1372 public com.google.protobuf.ByteString 1425 @Override 1426 public com.google.protobuf.ByteString 1373 1427 getSourceBytes() { 1374 1428 java.lang.Object ref = source_; 1375 1429 if (ref instanceof String) { 1376 com.google.protobuf.ByteString b = 1430 com.google.protobuf.ByteString b = 1377 1431 com.google.protobuf.ByteString.copyFromUtf8( 1378 1432 (java.lang.String) ref); … … 1397 1451 bitField0_ |= 0x00000010; 1398 1452 source_ = value; 1399 1453 1400 1454 return this; 1401 1455 } … … 1410 1464 bitField0_ = (bitField0_ & ~0x00000010); 1411 1465 source_ = getDefaultInstance().getSource(); 1412 1466 1413 1467 return this; 1414 1468 } … … 1427 1481 bitField0_ |= 0x00000010; 1428 1482 source_ = value; 1429 1483 1430 1484 return this; 1431 1485 } … … 1436 1490 * 1437 1491 * <pre> 1438 * replication timestamp, expressed in seconds since the epoch, 1492 * replication timestamp, expressed in seconds since the epoch, 1439 1493 * otherwise the same value as in the "timestamp=..." field 1440 1494 * in the state.txt file used by Osmosis 1441 1495 * </pre> 1442 1496 */ 1443 public boolean hasOsmosisReplicationTimestamp() { 1497 @Override 1498 public boolean hasOsmosisReplicationTimestamp() { 1444 1499 return ((bitField0_ & 0x00000020) == 0x00000020); 1445 1500 } … … 1448 1503 * 1449 1504 * <pre> 1450 * replication timestamp, expressed in seconds since the epoch, 1505 * replication timestamp, expressed in seconds since the epoch, 1451 1506 * otherwise the same value as in the "timestamp=..." field 1452 1507 * in the state.txt file used by Osmosis 1453 1508 * </pre> 1454 1509 */ 1455 public long getOsmosisReplicationTimestamp() { 1510 @Override 1511 public long getOsmosisReplicationTimestamp() { 1456 1512 return osmosisReplicationTimestamp_; 1457 1513 } … … 1460 1516 * 1461 1517 * <pre> 1462 * replication timestamp, expressed in seconds since the epoch, 1518 * replication timestamp, expressed in seconds since the epoch, 1463 1519 * otherwise the same value as in the "timestamp=..." field 1464 1520 * in the state.txt file used by Osmosis … … 1468 1524 bitField0_ |= 0x00000020; 1469 1525 osmosisReplicationTimestamp_ = value; 1470 1526 1471 1527 return this; 1472 1528 } … … 1475 1531 * 1476 1532 * <pre> 1477 * replication timestamp, expressed in seconds since the epoch, 1533 * replication timestamp, expressed in seconds since the epoch, 1478 1534 * otherwise the same value as in the "timestamp=..." field 1479 1535 * in the state.txt file used by Osmosis … … 1483 1539 bitField0_ = (bitField0_ & ~0x00000020); 1484 1540 osmosisReplicationTimestamp_ = 0L; 1485 1541 1486 1542 return this; 1487 1543 } … … 1495 1551 * </pre> 1496 1552 */ 1497 public boolean hasOsmosisReplicationSequenceNumber() { 1553 @Override 1554 public boolean hasOsmosisReplicationSequenceNumber() { 1498 1555 return ((bitField0_ & 0x00000040) == 0x00000040); 1499 1556 } … … 1505 1562 * </pre> 1506 1563 */ 1507 public long getOsmosisReplicationSequenceNumber() { 1564 @Override 1565 public long getOsmosisReplicationSequenceNumber() { 1508 1566 return osmosisReplicationSequenceNumber_; 1509 1567 } … … 1518 1576 bitField0_ |= 0x00000040; 1519 1577 osmosisReplicationSequenceNumber_ = value; 1520 1578 1521 1579 return this; 1522 1580 } … … 1531 1589 bitField0_ = (bitField0_ & ~0x00000040); 1532 1590 osmosisReplicationSequenceNumber_ = 0L; 1533 1591 1534 1592 return this; 1535 1593 } … … 1543 1601 * </pre> 1544 1602 */ 1545 public boolean hasOsmosisReplicationBaseUrl() { 1603 @Override 1604 public boolean hasOsmosisReplicationBaseUrl() { 1546 1605 return ((bitField0_ & 0x00000080) == 0x00000080); 1547 1606 } … … 1553 1612 * </pre> 1554 1613 */ 1555 public java.lang.String getOsmosisReplicationBaseUrl() { 1614 @Override 1615 public java.lang.String getOsmosisReplicationBaseUrl() { 1556 1616 java.lang.Object ref = osmosisReplicationBaseUrl_; 1557 1617 if (!(ref instanceof java.lang.String)) { … … 1574 1634 * </pre> 1575 1635 */ 1576 public com.google.protobuf.ByteString 1636 @Override 1637 public com.google.protobuf.ByteString 1577 1638 getOsmosisReplicationBaseUrlBytes() { 1578 1639 java.lang.Object ref = osmosisReplicationBaseUrl_; 1579 1640 if (ref instanceof String) { 1580 com.google.protobuf.ByteString b = 1641 com.google.protobuf.ByteString b = 1581 1642 com.google.protobuf.ByteString.copyFromUtf8( 1582 1643 (java.lang.String) ref); … … 1601 1662 bitField0_ |= 0x00000080; 1602 1663 osmosisReplicationBaseUrl_ = value; 1603 1664 1604 1665 return this; 1605 1666 } … … 1614 1675 bitField0_ = (bitField0_ & ~0x00000080); 1615 1676 osmosisReplicationBaseUrl_ = getDefaultInstance().getOsmosisReplicationBaseUrl(); 1616 1677 1617 1678 return this; 1618 1679 } … … 1631 1692 bitField0_ |= 0x00000080; 1632 1693 osmosisReplicationBaseUrl_ = value; 1633 1694 1634 1695 return this; 1635 1696 } … … 1705 1766 } 1706 1767 1707 public HeaderBBox getDefaultInstanceForType() { 1768 @Override 1769 public HeaderBBox getDefaultInstanceForType() { 1708 1770 return defaultInstance; 1709 1771 } … … 1776 1838 public static com.google.protobuf.Parser<HeaderBBox> PARSER = 1777 1839 new com.google.protobuf.AbstractParser<HeaderBBox>() { 1778 public HeaderBBox parsePartialFrom( 1840 @Override 1841 public HeaderBBox parsePartialFrom( 1779 1842 com.google.protobuf.CodedInputStream input, 1780 1843 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 1795 1858 * <code>required sint64 left = 1;</code> 1796 1859 */ 1797 public boolean hasLeft() { 1860 @Override 1861 public boolean hasLeft() { 1798 1862 return ((bitField0_ & 0x00000001) == 0x00000001); 1799 1863 } … … 1801 1865 * <code>required sint64 left = 1;</code> 1802 1866 */ 1803 public long getLeft() { 1867 @Override 1868 public long getLeft() { 1804 1869 return left_; 1805 1870 } … … 1810 1875 * <code>required sint64 right = 2;</code> 1811 1876 */ 1812 public boolean hasRight() { 1877 @Override 1878 public boolean hasRight() { 1813 1879 return ((bitField0_ & 0x00000002) == 0x00000002); 1814 1880 } … … 1816 1882 * <code>required sint64 right = 2;</code> 1817 1883 */ 1818 public long getRight() { 1884 @Override 1885 public long getRight() { 1819 1886 return right_; 1820 1887 } … … 1825 1892 * <code>required sint64 top = 3;</code> 1826 1893 */ 1827 public boolean hasTop() { 1894 @Override 1895 public boolean hasTop() { 1828 1896 return ((bitField0_ & 0x00000004) == 0x00000004); 1829 1897 } … … 1831 1899 * <code>required sint64 top = 3;</code> 1832 1900 */ 1833 public long getTop() { 1901 @Override 1902 public long getTop() { 1834 1903 return top_; 1835 1904 } … … 1840 1909 * <code>required sint64 bottom = 4;</code> 1841 1910 */ 1842 public boolean hasBottom() { 1911 @Override 1912 public boolean hasBottom() { 1843 1913 return ((bitField0_ & 0x00000008) == 0x00000008); 1844 1914 } … … 1846 1916 * <code>required sint64 bottom = 4;</code> 1847 1917 */ 1848 public long getBottom() { 1918 @Override 1919 public long getBottom() { 1849 1920 return bottom_; 1850 1921 } … … 1857 1928 } 1858 1929 private byte memoizedIsInitialized = -1; 1859 public final boolean isInitialized() { 1930 @Override 1931 public final boolean isInitialized() { 1860 1932 byte isInitialized = memoizedIsInitialized; 1861 1933 if (isInitialized == 1) return true; … … 1882 1954 } 1883 1955 1884 public void writeTo(com.google.protobuf.CodedOutputStream output) 1956 @Override 1957 public void writeTo(com.google.protobuf.CodedOutputStream output) 1885 1958 throws java.io.IOException { 1886 1959 getSerializedSize(); … … 1901 1974 1902 1975 private int memoizedSerializedSize = -1; 1903 public int getSerializedSize() { 1976 @Override 1977 public int getSerializedSize() { 1904 1978 int size = memoizedSerializedSize; 1905 1979 if (size != -1) return size; … … 1988 2062 1989 2063 public static Builder newBuilder() { return Builder.create(); } 1990 public Builder newBuilderForType() { return newBuilder(); } 2064 @Override 2065 public Builder newBuilderForType() { return newBuilder(); } 1991 2066 public static Builder newBuilder(crosby.binary.Osmformat.HeaderBBox prototype) { 1992 2067 return newBuilder().mergeFrom(prototype); 1993 2068 } 1994 public Builder toBuilder() { return newBuilder(this); } 2069 @Override 2070 public Builder toBuilder() { return newBuilder(this); } 1995 2071 1996 2072 /** … … 2014 2090 } 2015 2091 2016 public Builder clear() { 2092 @Override 2093 public Builder clear() { 2017 2094 super.clear(); 2018 2095 left_ = 0L; … … 2027 2104 } 2028 2105 2029 public Builder clone() { 2106 @Override 2107 public Builder clone() { 2030 2108 return create().mergeFrom(buildPartial()); 2031 2109 } 2032 2110 2033 public crosby.binary.Osmformat.HeaderBBox getDefaultInstanceForType() { 2111 @Override 2112 public crosby.binary.Osmformat.HeaderBBox getDefaultInstanceForType() { 2034 2113 return crosby.binary.Osmformat.HeaderBBox.getDefaultInstance(); 2035 2114 } 2036 2115 2037 public crosby.binary.Osmformat.HeaderBBox build() { 2116 @Override 2117 public crosby.binary.Osmformat.HeaderBBox build() { 2038 2118 crosby.binary.Osmformat.HeaderBBox result = buildPartial(); 2039 2119 if (!result.isInitialized()) { … … 2043 2123 } 2044 2124 2045 public crosby.binary.Osmformat.HeaderBBox buildPartial() { 2125 @Override 2126 public crosby.binary.Osmformat.HeaderBBox buildPartial() { 2046 2127 crosby.binary.Osmformat.HeaderBBox result = new crosby.binary.Osmformat.HeaderBBox(this); 2047 2128 int from_bitField0_ = bitField0_; … … 2067 2148 } 2068 2149 2069 public Builder mergeFrom(crosby.binary.Osmformat.HeaderBBox other) { 2150 @Override 2151 public Builder mergeFrom(crosby.binary.Osmformat.HeaderBBox other) { 2070 2152 if (other == crosby.binary.Osmformat.HeaderBBox.getDefaultInstance()) return this; 2071 2153 if (other.hasLeft()) { … … 2086 2168 } 2087 2169 2088 public final boolean isInitialized() { 2170 @Override 2171 public final boolean isInitialized() { 2089 2172 if (!hasLeft()) { 2090 2173 2091 2174 return false; 2092 2175 } 2093 2176 if (!hasRight()) { 2094 2177 2095 2178 return false; 2096 2179 } 2097 2180 if (!hasTop()) { 2098 2181 2099 2182 return false; 2100 2183 } 2101 2184 if (!hasBottom()) { 2102 2185 2103 2186 return false; 2104 2187 } … … 2106 2189 } 2107 2190 2108 public Builder mergeFrom( 2191 @Override 2192 public Builder mergeFrom( 2109 2193 com.google.protobuf.CodedInputStream input, 2110 2194 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 2129 2213 * <code>required sint64 left = 1;</code> 2130 2214 */ 2131 public boolean hasLeft() { 2215 @Override 2216 public boolean hasLeft() { 2132 2217 return ((bitField0_ & 0x00000001) == 0x00000001); 2133 2218 } … … 2135 2220 * <code>required sint64 left = 1;</code> 2136 2221 */ 2137 public long getLeft() { 2222 @Override 2223 public long getLeft() { 2138 2224 return left_; 2139 2225 } … … 2144 2230 bitField0_ |= 0x00000001; 2145 2231 left_ = value; 2146 2232 2147 2233 return this; 2148 2234 } … … 2153 2239 bitField0_ = (bitField0_ & ~0x00000001); 2154 2240 left_ = 0L; 2155 2241 2156 2242 return this; 2157 2243 } … … 2161 2247 * <code>required sint64 right = 2;</code> 2162 2248 */ 2163 public boolean hasRight() { 2249 @Override 2250 public boolean hasRight() { 2164 2251 return ((bitField0_ & 0x00000002) == 0x00000002); 2165 2252 } … … 2167 2254 * <code>required sint64 right = 2;</code> 2168 2255 */ 2169 public long getRight() { 2256 @Override 2257 public long getRight() { 2170 2258 return right_; 2171 2259 } … … 2176 2264 bitField0_ |= 0x00000002; 2177 2265 right_ = value; 2178 2266 2179 2267 return this; 2180 2268 } … … 2185 2273 bitField0_ = (bitField0_ & ~0x00000002); 2186 2274 right_ = 0L; 2187 2275 2188 2276 return this; 2189 2277 } … … 2193 2281 * <code>required sint64 top = 3;</code> 2194 2282 */ 2195 public boolean hasTop() { 2283 @Override 2284 public boolean hasTop() { 2196 2285 return ((bitField0_ & 0x00000004) == 0x00000004); 2197 2286 } … … 2199 2288 * <code>required sint64 top = 3;</code> 2200 2289 */ 2201 public long getTop() { 2290 @Override 2291 public long getTop() { 2202 2292 return top_; 2203 2293 } … … 2208 2298 bitField0_ |= 0x00000004; 2209 2299 top_ = value; 2210 2300 2211 2301 return this; 2212 2302 } … … 2217 2307 bitField0_ = (bitField0_ & ~0x00000004); 2218 2308 top_ = 0L; 2219 2309 2220 2310 return this; 2221 2311 } … … 2225 2315 * <code>required sint64 bottom = 4;</code> 2226 2316 */ 2227 public boolean hasBottom() { 2317 @Override 2318 public boolean hasBottom() { 2228 2319 return ((bitField0_ & 0x00000008) == 0x00000008); 2229 2320 } … … 2231 2322 * <code>required sint64 bottom = 4;</code> 2232 2323 */ 2233 public long getBottom() { 2324 @Override 2325 public long getBottom() { 2234 2326 return bottom_; 2235 2327 } … … 2240 2332 bitField0_ |= 0x00000008; 2241 2333 bottom_ = value; 2242 2334 2243 2335 return this; 2244 2336 } … … 2249 2341 bitField0_ = (bitField0_ & ~0x00000008); 2250 2342 bottom_ = 0L; 2251 2343 2252 2344 return this; 2253 2345 } … … 2280 2372 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2281 2373 */ 2282 java.util.List<crosby.binary.Osmformat.PrimitiveGroup> 2374 java.util.List<crosby.binary.Osmformat.PrimitiveGroup> 2283 2375 getPrimitivegroupList(); 2284 2376 /** … … 2370 2462 } 2371 2463 2372 public PrimitiveBlock getDefaultInstanceForType() { 2464 @Override 2465 public PrimitiveBlock getDefaultInstanceForType() { 2373 2466 return defaultInstance; 2374 2467 } … … 2465 2558 public static com.google.protobuf.Parser<PrimitiveBlock> PARSER = 2466 2559 new com.google.protobuf.AbstractParser<PrimitiveBlock>() { 2467 public PrimitiveBlock parsePartialFrom( 2560 @Override 2561 public PrimitiveBlock parsePartialFrom( 2468 2562 com.google.protobuf.CodedInputStream input, 2469 2563 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 2484 2578 * <code>required .OSMPBF.StringTable stringtable = 1;</code> 2485 2579 */ 2486 public boolean hasStringtable() { 2580 @Override 2581 public boolean hasStringtable() { 2487 2582 return ((bitField0_ & 0x00000001) == 0x00000001); 2488 2583 } … … 2490 2585 * <code>required .OSMPBF.StringTable stringtable = 1;</code> 2491 2586 */ 2492 public crosby.binary.Osmformat.StringTable getStringtable() { 2587 @Override 2588 public crosby.binary.Osmformat.StringTable getStringtable() { 2493 2589 return stringtable_; 2494 2590 } … … 2499 2595 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2500 2596 */ 2501 public java.util.List<crosby.binary.Osmformat.PrimitiveGroup> getPrimitivegroupList() { 2597 @Override 2598 public java.util.List<crosby.binary.Osmformat.PrimitiveGroup> getPrimitivegroupList() { 2502 2599 return primitivegroup_; 2503 2600 } … … 2505 2602 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2506 2603 */ 2507 public java.util.List<? extends crosby.binary.Osmformat.PrimitiveGroupOrBuilder> 2604 public java.util.List<? extends crosby.binary.Osmformat.PrimitiveGroupOrBuilder> 2508 2605 getPrimitivegroupOrBuilderList() { 2509 2606 return primitivegroup_; … … 2512 2609 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2513 2610 */ 2514 public int getPrimitivegroupCount() { 2611 @Override 2612 public int getPrimitivegroupCount() { 2515 2613 return primitivegroup_.size(); 2516 2614 } … … 2518 2616 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2519 2617 */ 2520 public crosby.binary.Osmformat.PrimitiveGroup getPrimitivegroup(int index) { 2618 @Override 2619 public crosby.binary.Osmformat.PrimitiveGroup getPrimitivegroup(int index) { 2521 2620 return primitivegroup_.get(index); 2522 2621 } … … 2538 2637 * </pre> 2539 2638 */ 2540 public boolean hasGranularity() { 2639 @Override 2640 public boolean hasGranularity() { 2541 2641 return ((bitField0_ & 0x00000002) == 0x00000002); 2542 2642 } … … 2548 2648 * </pre> 2549 2649 */ 2550 public int getGranularity() { 2650 @Override 2651 public int getGranularity() { 2551 2652 return granularity_; 2552 2653 } … … 2561 2662 * </pre> 2562 2663 */ 2563 public boolean hasLatOffset() { 2664 @Override 2665 public boolean hasLatOffset() { 2564 2666 return ((bitField0_ & 0x00000004) == 0x00000004); 2565 2667 } … … 2571 2673 * </pre> 2572 2674 */ 2573 public long getLatOffset() { 2675 @Override 2676 public long getLatOffset() { 2574 2677 return latOffset_; 2575 2678 } … … 2580 2683 * <code>optional int64 lon_offset = 20 [default = 0];</code> 2581 2684 */ 2582 public boolean hasLonOffset() { 2685 @Override 2686 public boolean hasLonOffset() { 2583 2687 return ((bitField0_ & 0x00000008) == 0x00000008); 2584 2688 } … … 2586 2690 * <code>optional int64 lon_offset = 20 [default = 0];</code> 2587 2691 */ 2588 public long getLonOffset() { 2692 @Override 2693 public long getLonOffset() { 2589 2694 return lonOffset_; 2590 2695 } … … 2599 2704 * </pre> 2600 2705 */ 2601 public boolean hasDateGranularity() { 2706 @Override 2707 public boolean hasDateGranularity() { 2602 2708 return ((bitField0_ & 0x00000010) == 0x00000010); 2603 2709 } … … 2609 2715 * </pre> 2610 2716 */ 2611 public int getDateGranularity() { 2717 @Override 2718 public int getDateGranularity() { 2612 2719 return dateGranularity_; 2613 2720 } … … 2622 2729 } 2623 2730 private byte memoizedIsInitialized = -1; 2624 public final boolean isInitialized() { 2731 @Override 2732 public final boolean isInitialized() { 2625 2733 byte isInitialized = memoizedIsInitialized; 2626 2734 if (isInitialized == 1) return true; … … 2641 2749 } 2642 2750 2643 public void writeTo(com.google.protobuf.CodedOutputStream output) 2751 @Override 2752 public void writeTo(com.google.protobuf.CodedOutputStream output) 2644 2753 throws java.io.IOException { 2645 2754 getSerializedSize(); … … 2666 2775 2667 2776 private int memoizedSerializedSize = -1; 2668 public int getSerializedSize() { 2777 @Override 2778 public int getSerializedSize() { 2669 2779 int size = memoizedSerializedSize; 2670 2780 if (size != -1) return size; … … 2761 2871 2762 2872 public static Builder newBuilder() { return Builder.create(); } 2763 public Builder newBuilderForType() { return newBuilder(); } 2873 @Override 2874 public Builder newBuilderForType() { return newBuilder(); } 2764 2875 public static Builder newBuilder(crosby.binary.Osmformat.PrimitiveBlock prototype) { 2765 2876 return newBuilder().mergeFrom(prototype); 2766 2877 } 2767 public Builder toBuilder() { return newBuilder(this); } 2878 @Override 2879 public Builder toBuilder() { return newBuilder(this); } 2768 2880 2769 2881 /** … … 2787 2899 } 2788 2900 2789 public Builder clear() { 2901 @Override 2902 public Builder clear() { 2790 2903 super.clear(); 2791 2904 stringtable_ = crosby.binary.Osmformat.StringTable.getDefaultInstance(); … … 2804 2917 } 2805 2918 2806 public Builder clone() { 2919 @Override 2920 public Builder clone() { 2807 2921 return create().mergeFrom(buildPartial()); 2808 2922 } 2809 2923 2810 public crosby.binary.Osmformat.PrimitiveBlock getDefaultInstanceForType() { 2924 @Override 2925 public crosby.binary.Osmformat.PrimitiveBlock getDefaultInstanceForType() { 2811 2926 return crosby.binary.Osmformat.PrimitiveBlock.getDefaultInstance(); 2812 2927 } 2813 2928 2814 public crosby.binary.Osmformat.PrimitiveBlock build() { 2929 @Override 2930 public crosby.binary.Osmformat.PrimitiveBlock build() { 2815 2931 crosby.binary.Osmformat.PrimitiveBlock result = buildPartial(); 2816 2932 if (!result.isInitialized()) { … … 2820 2936 } 2821 2937 2822 public crosby.binary.Osmformat.PrimitiveBlock buildPartial() { 2938 @Override 2939 public crosby.binary.Osmformat.PrimitiveBlock buildPartial() { 2823 2940 crosby.binary.Osmformat.PrimitiveBlock result = new crosby.binary.Osmformat.PrimitiveBlock(this); 2824 2941 int from_bitField0_ = bitField0_; … … 2853 2970 } 2854 2971 2855 public Builder mergeFrom(crosby.binary.Osmformat.PrimitiveBlock other) { 2972 @Override 2973 public Builder mergeFrom(crosby.binary.Osmformat.PrimitiveBlock other) { 2856 2974 if (other == crosby.binary.Osmformat.PrimitiveBlock.getDefaultInstance()) return this; 2857 2975 if (other.hasStringtable()) { … … 2866 2984 primitivegroup_.addAll(other.primitivegroup_); 2867 2985 } 2868 2986 2869 2987 } 2870 2988 if (other.hasGranularity()) { … … 2885 3003 } 2886 3004 2887 public final boolean isInitialized() { 3005 @Override 3006 public final boolean isInitialized() { 2888 3007 if (!hasStringtable()) { 2889 3008 2890 3009 return false; 2891 3010 } 2892 3011 for (int i = 0; i < getPrimitivegroupCount(); i++) { 2893 3012 if (!getPrimitivegroup(i).isInitialized()) { 2894 3013 2895 3014 return false; 2896 3015 } … … 2899 3018 } 2900 3019 2901 public Builder mergeFrom( 3020 @Override 3021 public Builder mergeFrom( 2902 3022 com.google.protobuf.CodedInputStream input, 2903 3023 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 2922 3042 * <code>required .OSMPBF.StringTable stringtable = 1;</code> 2923 3043 */ 2924 public boolean hasStringtable() { 3044 @Override 3045 public boolean hasStringtable() { 2925 3046 return ((bitField0_ & 0x00000001) == 0x00000001); 2926 3047 } … … 2928 3049 * <code>required .OSMPBF.StringTable stringtable = 1;</code> 2929 3050 */ 2930 public crosby.binary.Osmformat.StringTable getStringtable() { 3051 @Override 3052 public crosby.binary.Osmformat.StringTable getStringtable() { 2931 3053 return stringtable_; 2932 3054 } … … 2990 3112 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2991 3113 */ 2992 public java.util.List<crosby.binary.Osmformat.PrimitiveGroup> getPrimitivegroupList() { 3114 @Override 3115 public java.util.List<crosby.binary.Osmformat.PrimitiveGroup> getPrimitivegroupList() { 2993 3116 return java.util.Collections.unmodifiableList(primitivegroup_); 2994 3117 } … … 2996 3119 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 2997 3120 */ 2998 public int getPrimitivegroupCount() { 3121 @Override 3122 public int getPrimitivegroupCount() { 2999 3123 return primitivegroup_.size(); 3000 3124 } … … 3002 3126 * <code>repeated .OSMPBF.PrimitiveGroup primitivegroup = 2;</code> 3003 3127 */ 3004 public crosby.binary.Osmformat.PrimitiveGroup getPrimitivegroup(int index) { 3128 @Override 3129 public crosby.binary.Osmformat.PrimitiveGroup getPrimitivegroup(int index) { 3005 3130 return primitivegroup_.get(index); 3006 3131 } … … 3111 3236 * </pre> 3112 3237 */ 3113 public boolean hasGranularity() { 3238 @Override 3239 public boolean hasGranularity() { 3114 3240 return ((bitField0_ & 0x00000004) == 0x00000004); 3115 3241 } … … 3121 3247 * </pre> 3122 3248 */ 3123 public int getGranularity() { 3249 @Override 3250 public int getGranularity() { 3124 3251 return granularity_; 3125 3252 } … … 3134 3261 bitField0_ |= 0x00000004; 3135 3262 granularity_ = value; 3136 3263 3137 3264 return this; 3138 3265 } … … 3147 3274 bitField0_ = (bitField0_ & ~0x00000004); 3148 3275 granularity_ = 100; 3149 3276 3150 3277 return this; 3151 3278 } … … 3159 3286 * </pre> 3160 3287 */ 3161 public boolean hasLatOffset() { 3288 @Override 3289 public boolean hasLatOffset() { 3162 3290 return ((bitField0_ & 0x00000008) == 0x00000008); 3163 3291 } … … 3169 3297 * </pre> 3170 3298 */ 3171 public long getLatOffset() { 3299 @Override 3300 public long getLatOffset() { 3172 3301 return latOffset_; 3173 3302 } … … 3182 3311 bitField0_ |= 0x00000008; 3183 3312 latOffset_ = value; 3184 3313 3185 3314 return this; 3186 3315 } … … 3195 3324 bitField0_ = (bitField0_ & ~0x00000008); 3196 3325 latOffset_ = 0L; 3197 3326 3198 3327 return this; 3199 3328 } … … 3203 3332 * <code>optional int64 lon_offset = 20 [default = 0];</code> 3204 3333 */ 3205 public boolean hasLonOffset() { 3334 @Override 3335 public boolean hasLonOffset() { 3206 3336 return ((bitField0_ & 0x00000010) == 0x00000010); 3207 3337 } … … 3209 3339 * <code>optional int64 lon_offset = 20 [default = 0];</code> 3210 3340 */ 3211 public long getLonOffset() { 3341 @Override 3342 public long getLonOffset() { 3212 3343 return lonOffset_; 3213 3344 } … … 3218 3349 bitField0_ |= 0x00000010; 3219 3350 lonOffset_ = value; 3220 3351 3221 3352 return this; 3222 3353 } … … 3227 3358 bitField0_ = (bitField0_ & ~0x00000010); 3228 3359 lonOffset_ = 0L; 3229 3360 3230 3361 return this; 3231 3362 } … … 3239 3370 * </pre> 3240 3371 */ 3241 public boolean hasDateGranularity() { 3372 @Override 3373 public boolean hasDateGranularity() { 3242 3374 return ((bitField0_ & 0x00000020) == 0x00000020); 3243 3375 } … … 3249 3381 * </pre> 3250 3382 */ 3251 public int getDateGranularity() { 3383 @Override 3384 public int getDateGranularity() { 3252 3385 return dateGranularity_; 3253 3386 } … … 3262 3395 bitField0_ |= 0x00000020; 3263 3396 dateGranularity_ = value; 3264 3397 3265 3398 return this; 3266 3399 } … … 3275 3408 bitField0_ = (bitField0_ & ~0x00000020); 3276 3409 dateGranularity_ = 1000; 3277 3410 3278 3411 return this; 3279 3412 } … … 3297 3430 * <code>repeated .OSMPBF.Node nodes = 1;</code> 3298 3431 */ 3299 java.util.List<crosby.binary.Osmformat.Node> 3432 java.util.List<crosby.binary.Osmformat.Node> 3300 3433 getNodesList(); 3301 3434 /** … … 3320 3453 * <code>repeated .OSMPBF.Way ways = 3;</code> 3321 3454 */ 3322 java.util.List<crosby.binary.Osmformat.Way> 3455 java.util.List<crosby.binary.Osmformat.Way> 3323 3456 getWaysList(); 3324 3457 /** … … 3334 3467 * <code>repeated .OSMPBF.Relation relations = 4;</code> 3335 3468 */ 3336 java.util.List<crosby.binary.Osmformat.Relation> 3469 java.util.List<crosby.binary.Osmformat.Relation> 3337 3470 getRelationsList(); 3338 3471 /** … … 3348 3481 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 3349 3482 */ 3350 java.util.List<crosby.binary.Osmformat.ChangeSet> 3483 java.util.List<crosby.binary.Osmformat.ChangeSet> 3351 3484 getChangesetsList(); 3352 3485 /** … … 3382 3515 } 3383 3516 3384 public PrimitiveGroup getDefaultInstanceForType() { 3517 @Override 3518 public PrimitiveGroup getDefaultInstanceForType() { 3385 3519 return defaultInstance; 3386 3520 } … … 3490 3624 public static com.google.protobuf.Parser<PrimitiveGroup> PARSER = 3491 3625 new com.google.protobuf.AbstractParser<PrimitiveGroup>() { 3492 public PrimitiveGroup parsePartialFrom( 3626 @Override 3627 public PrimitiveGroup parsePartialFrom( 3493 3628 com.google.protobuf.CodedInputStream input, 3494 3629 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 3509 3644 * <code>repeated .OSMPBF.Node nodes = 1;</code> 3510 3645 */ 3511 public java.util.List<crosby.binary.Osmformat.Node> getNodesList() { 3646 @Override 3647 public java.util.List<crosby.binary.Osmformat.Node> getNodesList() { 3512 3648 return nodes_; 3513 3649 } … … 3515 3651 * <code>repeated .OSMPBF.Node nodes = 1;</code> 3516 3652 */ 3517 public java.util.List<? extends crosby.binary.Osmformat.NodeOrBuilder> 3653 public java.util.List<? extends crosby.binary.Osmformat.NodeOrBuilder> 3518 3654 getNodesOrBuilderList() { 3519 3655 return nodes_; … … 3522 3658 * <code>repeated .OSMPBF.Node nodes = 1;</code> 3523 3659 */ 3524 public int getNodesCount() { 3660 @Override 3661 public int getNodesCount() { 3525 3662 return nodes_.size(); 3526 3663 } … … 3528 3665 * <code>repeated .OSMPBF.Node nodes = 1;</code> 3529 3666 */ 3530 public crosby.binary.Osmformat.Node getNodes(int index) { 3667 @Override 3668 public crosby.binary.Osmformat.Node getNodes(int index) { 3531 3669 return nodes_.get(index); 3532 3670 } … … 3544 3682 * <code>optional .OSMPBF.DenseNodes dense = 2;</code> 3545 3683 */ 3546 public boolean hasDense() { 3684 @Override 3685 public boolean hasDense() { 3547 3686 return ((bitField0_ & 0x00000001) == 0x00000001); 3548 3687 } … … 3550 3689 * <code>optional .OSMPBF.DenseNodes dense = 2;</code> 3551 3690 */ 3552 public crosby.binary.Osmformat.DenseNodes getDense() { 3691 @Override 3692 public crosby.binary.Osmformat.DenseNodes getDense() { 3553 3693 return dense_; 3554 3694 } … … 3559 3699 * <code>repeated .OSMPBF.Way ways = 3;</code> 3560 3700 */ 3561 public java.util.List<crosby.binary.Osmformat.Way> getWaysList() { 3701 @Override 3702 public java.util.List<crosby.binary.Osmformat.Way> getWaysList() { 3562 3703 return ways_; 3563 3704 } … … 3565 3706 * <code>repeated .OSMPBF.Way ways = 3;</code> 3566 3707 */ 3567 public java.util.List<? extends crosby.binary.Osmformat.WayOrBuilder> 3708 public java.util.List<? extends crosby.binary.Osmformat.WayOrBuilder> 3568 3709 getWaysOrBuilderList() { 3569 3710 return ways_; … … 3572 3713 * <code>repeated .OSMPBF.Way ways = 3;</code> 3573 3714 */ 3574 public int getWaysCount() { 3715 @Override 3716 public int getWaysCount() { 3575 3717 return ways_.size(); 3576 3718 } … … 3578 3720 * <code>repeated .OSMPBF.Way ways = 3;</code> 3579 3721 */ 3580 public crosby.binary.Osmformat.Way getWays(int index) { 3722 @Override 3723 public crosby.binary.Osmformat.Way getWays(int index) { 3581 3724 return ways_.get(index); 3582 3725 } … … 3594 3737 * <code>repeated .OSMPBF.Relation relations = 4;</code> 3595 3738 */ 3596 public java.util.List<crosby.binary.Osmformat.Relation> getRelationsList() { 3739 @Override 3740 public java.util.List<crosby.binary.Osmformat.Relation> getRelationsList() { 3597 3741 return relations_; 3598 3742 } … … 3600 3744 * <code>repeated .OSMPBF.Relation relations = 4;</code> 3601 3745 */ 3602 public java.util.List<? extends crosby.binary.Osmformat.RelationOrBuilder> 3746 public java.util.List<? extends crosby.binary.Osmformat.RelationOrBuilder> 3603 3747 getRelationsOrBuilderList() { 3604 3748 return relations_; … … 3607 3751 * <code>repeated .OSMPBF.Relation relations = 4;</code> 3608 3752 */ 3609 public int getRelationsCount() { 3753 @Override 3754 public int getRelationsCount() { 3610 3755 return relations_.size(); 3611 3756 } … … 3613 3758 * <code>repeated .OSMPBF.Relation relations = 4;</code> 3614 3759 */ 3615 public crosby.binary.Osmformat.Relation getRelations(int index) { 3760 @Override 3761 public crosby.binary.Osmformat.Relation getRelations(int index) { 3616 3762 return relations_.get(index); 3617 3763 } … … 3629 3775 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 3630 3776 */ 3631 public java.util.List<crosby.binary.Osmformat.ChangeSet> getChangesetsList() { 3777 @Override 3778 public java.util.List<crosby.binary.Osmformat.ChangeSet> getChangesetsList() { 3632 3779 return changesets_; 3633 3780 } … … 3635 3782 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 3636 3783 */ 3637 public java.util.List<? extends crosby.binary.Osmformat.ChangeSetOrBuilder> 3784 public java.util.List<? extends crosby.binary.Osmformat.ChangeSetOrBuilder> 3638 3785 getChangesetsOrBuilderList() { 3639 3786 return changesets_; … … 3642 3789 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 3643 3790 */ 3644 public int getChangesetsCount() { 3791 @Override 3792 public int getChangesetsCount() { 3645 3793 return changesets_.size(); 3646 3794 } … … 3648 3796 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 3649 3797 */ 3650 public crosby.binary.Osmformat.ChangeSet getChangesets(int index) { 3798 @Override 3799 public crosby.binary.Osmformat.ChangeSet getChangesets(int index) { 3651 3800 return changesets_.get(index); 3652 3801 } … … 3667 3816 } 3668 3817 private byte memoizedIsInitialized = -1; 3669 public final boolean isInitialized() { 3818 @Override 3819 public final boolean isInitialized() { 3670 3820 byte isInitialized = memoizedIsInitialized; 3671 3821 if (isInitialized == 1) return true; … … 3700 3850 } 3701 3851 3702 public void writeTo(com.google.protobuf.CodedOutputStream output) 3852 @Override 3853 public void writeTo(com.google.protobuf.CodedOutputStream output) 3703 3854 throws java.io.IOException { 3704 3855 getSerializedSize(); … … 3722 3873 3723 3874 private int memoizedSerializedSize = -1; 3724 public int getSerializedSize() { 3875 @Override 3876 public int getSerializedSize() { 3725 3877 int size = memoizedSerializedSize; 3726 3878 if (size != -1) return size; … … 3813 3965 3814 3966 public static Builder newBuilder() { return Builder.create(); } 3815 public Builder newBuilderForType() { return newBuilder(); } 3967 @Override 3968 public Builder newBuilderForType() { return newBuilder(); } 3816 3969 public static Builder newBuilder(crosby.binary.Osmformat.PrimitiveGroup prototype) { 3817 3970 return newBuilder().mergeFrom(prototype); 3818 3971 } 3819 public Builder toBuilder() { return newBuilder(this); } 3972 @Override 3973 public Builder toBuilder() { return newBuilder(this); } 3820 3974 3821 3975 /** … … 3843 3997 } 3844 3998 3845 public Builder clear() { 3999 @Override 4000 public Builder clear() { 3846 4001 super.clear(); 3847 4002 nodes_ = java.util.Collections.emptyList(); … … 3858 4013 } 3859 4014 3860 public Builder clone() { 4015 @Override 4016 public Builder clone() { 3861 4017 return create().mergeFrom(buildPartial()); 3862 4018 } 3863 4019 3864 public crosby.binary.Osmformat.PrimitiveGroup getDefaultInstanceForType() { 4020 @Override 4021 public crosby.binary.Osmformat.PrimitiveGroup getDefaultInstanceForType() { 3865 4022 return crosby.binary.Osmformat.PrimitiveGroup.getDefaultInstance(); 3866 4023 } 3867 4024 3868 public crosby.binary.Osmformat.PrimitiveGroup build() { 4025 @Override 4026 public crosby.binary.Osmformat.PrimitiveGroup build() { 3869 4027 crosby.binary.Osmformat.PrimitiveGroup result = buildPartial(); 3870 4028 if (!result.isInitialized()) { … … 3874 4032 } 3875 4033 3876 public crosby.binary.Osmformat.PrimitiveGroup buildPartial() { 4034 @Override 4035 public crosby.binary.Osmformat.PrimitiveGroup buildPartial() { 3877 4036 crosby.binary.Osmformat.PrimitiveGroup result = new crosby.binary.Osmformat.PrimitiveGroup(this); 3878 4037 int from_bitField0_ = bitField0_; … … 3906 4065 } 3907 4066 3908 public Builder mergeFrom(crosby.binary.Osmformat.PrimitiveGroup other) { 4067 @Override 4068 public Builder mergeFrom(crosby.binary.Osmformat.PrimitiveGroup other) { 3909 4069 if (other == crosby.binary.Osmformat.PrimitiveGroup.getDefaultInstance()) return this; 3910 4070 if (!other.nodes_.isEmpty()) { … … 3916 4076 nodes_.addAll(other.nodes_); 3917 4077 } 3918 4078 3919 4079 } 3920 4080 if (other.hasDense()) { … … 3929 4089 ways_.addAll(other.ways_); 3930 4090 } 3931 4091 3932 4092 } 3933 4093 if (!other.relations_.isEmpty()) { … … 3939 4099 relations_.addAll(other.relations_); 3940 4100 } 3941 4101 3942 4102 } 3943 4103 if (!other.changesets_.isEmpty()) { … … 3949 4109 changesets_.addAll(other.changesets_); 3950 4110 } 3951 4111 3952 4112 } 3953 4113 setUnknownFields( … … 3956 4116 } 3957 4117 3958 public final boolean isInitialized() { 4118 @Override 4119 public final boolean isInitialized() { 3959 4120 for (int i = 0; i < getNodesCount(); i++) { 3960 4121 if (!getNodes(i).isInitialized()) { 3961 4122 3962 4123 return false; 3963 4124 } … … 3965 4126 for (int i = 0; i < getWaysCount(); i++) { 3966 4127 if (!getWays(i).isInitialized()) { 3967 4128 3968 4129 return false; 3969 4130 } … … 3971 4132 for (int i = 0; i < getRelationsCount(); i++) { 3972 4133 if (!getRelations(i).isInitialized()) { 3973 4134 3974 4135 return false; 3975 4136 } … … 3977 4138 for (int i = 0; i < getChangesetsCount(); i++) { 3978 4139 if (!getChangesets(i).isInitialized()) { 3979 4140 3980 4141 return false; 3981 4142 } … … 3984 4145 } 3985 4146 3986 public Builder mergeFrom( 4147 @Override 4148 public Builder mergeFrom( 3987 4149 com.google.protobuf.CodedInputStream input, 3988 4150 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4015 4177 * <code>repeated .OSMPBF.Node nodes = 1;</code> 4016 4178 */ 4017 public java.util.List<crosby.binary.Osmformat.Node> getNodesList() { 4179 @Override 4180 public java.util.List<crosby.binary.Osmformat.Node> getNodesList() { 4018 4181 return java.util.Collections.unmodifiableList(nodes_); 4019 4182 } … … 4021 4184 * <code>repeated .OSMPBF.Node nodes = 1;</code> 4022 4185 */ 4023 public int getNodesCount() { 4186 @Override 4187 public int getNodesCount() { 4024 4188 return nodes_.size(); 4025 4189 } … … 4027 4191 * <code>repeated .OSMPBF.Node nodes = 1;</code> 4028 4192 */ 4029 public crosby.binary.Osmformat.Node getNodes(int index) { 4193 @Override 4194 public crosby.binary.Osmformat.Node getNodes(int index) { 4030 4195 return nodes_.get(index); 4031 4196 } … … 4132 4297 * <code>optional .OSMPBF.DenseNodes dense = 2;</code> 4133 4298 */ 4134 public boolean hasDense() { 4299 @Override 4300 public boolean hasDense() { 4135 4301 return ((bitField0_ & 0x00000002) == 0x00000002); 4136 4302 } … … 4138 4304 * <code>optional .OSMPBF.DenseNodes dense = 2;</code> 4139 4305 */ 4140 public crosby.binary.Osmformat.DenseNodes getDense() { 4306 @Override 4307 public crosby.binary.Osmformat.DenseNodes getDense() { 4141 4308 return dense_; 4142 4309 } … … 4200 4367 * <code>repeated .OSMPBF.Way ways = 3;</code> 4201 4368 */ 4202 public java.util.List<crosby.binary.Osmformat.Way> getWaysList() { 4369 @Override 4370 public java.util.List<crosby.binary.Osmformat.Way> getWaysList() { 4203 4371 return java.util.Collections.unmodifiableList(ways_); 4204 4372 } … … 4206 4374 * <code>repeated .OSMPBF.Way ways = 3;</code> 4207 4375 */ 4208 public int getWaysCount() { 4376 @Override 4377 public int getWaysCount() { 4209 4378 return ways_.size(); 4210 4379 } … … 4212 4381 * <code>repeated .OSMPBF.Way ways = 3;</code> 4213 4382 */ 4214 public crosby.binary.Osmformat.Way getWays(int index) { 4383 @Override 4384 public crosby.binary.Osmformat.Way getWays(int index) { 4215 4385 return ways_.get(index); 4216 4386 } … … 4325 4495 * <code>repeated .OSMPBF.Relation relations = 4;</code> 4326 4496 */ 4327 public java.util.List<crosby.binary.Osmformat.Relation> getRelationsList() { 4497 @Override 4498 public java.util.List<crosby.binary.Osmformat.Relation> getRelationsList() { 4328 4499 return java.util.Collections.unmodifiableList(relations_); 4329 4500 } … … 4331 4502 * <code>repeated .OSMPBF.Relation relations = 4;</code> 4332 4503 */ 4333 public int getRelationsCount() { 4504 @Override 4505 public int getRelationsCount() { 4334 4506 return relations_.size(); 4335 4507 } … … 4337 4509 * <code>repeated .OSMPBF.Relation relations = 4;</code> 4338 4510 */ 4339 public crosby.binary.Osmformat.Relation getRelations(int index) { 4511 @Override 4512 public crosby.binary.Osmformat.Relation getRelations(int index) { 4340 4513 return relations_.get(index); 4341 4514 } … … 4450 4623 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 4451 4624 */ 4452 public java.util.List<crosby.binary.Osmformat.ChangeSet> getChangesetsList() { 4625 @Override 4626 public java.util.List<crosby.binary.Osmformat.ChangeSet> getChangesetsList() { 4453 4627 return java.util.Collections.unmodifiableList(changesets_); 4454 4628 } … … 4456 4630 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 4457 4631 */ 4458 public int getChangesetsCount() { 4632 @Override 4633 public int getChangesetsCount() { 4459 4634 return changesets_.size(); 4460 4635 } … … 4462 4637 * <code>repeated .OSMPBF.ChangeSet changesets = 5;</code> 4463 4638 */ 4464 public crosby.binary.Osmformat.ChangeSet getChangesets(int index) { 4639 @Override 4640 public crosby.binary.Osmformat.ChangeSet getChangesets(int index) { 4465 4641 return changesets_.get(index); 4466 4642 } … … 4616 4792 } 4617 4793 4618 public StringTable getDefaultInstanceForType() { 4794 @Override 4795 public StringTable getDefaultInstanceForType() { 4619 4796 return defaultInstance; 4620 4797 } … … 4678 4855 public static com.google.protobuf.Parser<StringTable> PARSER = 4679 4856 new com.google.protobuf.AbstractParser<StringTable>() { 4680 public StringTable parsePartialFrom( 4857 @Override 4858 public StringTable parsePartialFrom( 4681 4859 com.google.protobuf.CodedInputStream input, 4682 4860 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4696 4874 * <code>repeated bytes s = 1;</code> 4697 4875 */ 4698 public java.util.List<com.google.protobuf.ByteString> 4876 @Override 4877 public java.util.List<com.google.protobuf.ByteString> 4699 4878 getSList() { 4700 4879 return s_; … … 4703 4882 * <code>repeated bytes s = 1;</code> 4704 4883 */ 4705 public int getSCount() { 4884 @Override 4885 public int getSCount() { 4706 4886 return s_.size(); 4707 4887 } … … 4709 4889 * <code>repeated bytes s = 1;</code> 4710 4890 */ 4711 public com.google.protobuf.ByteString getS(int index) { 4891 @Override 4892 public com.google.protobuf.ByteString getS(int index) { 4712 4893 return s_.get(index); 4713 4894 } … … 4717 4898 } 4718 4899 private byte memoizedIsInitialized = -1; 4719 public final boolean isInitialized() { 4900 @Override 4901 public final boolean isInitialized() { 4720 4902 byte isInitialized = memoizedIsInitialized; 4721 4903 if (isInitialized == 1) return true; … … 4726 4908 } 4727 4909 4728 public void writeTo(com.google.protobuf.CodedOutputStream output) 4910 @Override 4911 public void writeTo(com.google.protobuf.CodedOutputStream output) 4729 4912 throws java.io.IOException { 4730 4913 getSerializedSize(); … … 4736 4919 4737 4920 private int memoizedSerializedSize = -1; 4738 public int getSerializedSize() { 4921 @Override 4922 public int getSerializedSize() { 4739 4923 int size = memoizedSerializedSize; 4740 4924 if (size != -1) return size; … … 4816 5000 4817 5001 public static Builder newBuilder() { return Builder.create(); } 4818 public Builder newBuilderForType() { return newBuilder(); } 5002 @Override 5003 public Builder newBuilderForType() { return newBuilder(); } 4819 5004 public static Builder newBuilder(crosby.binary.Osmformat.StringTable prototype) { 4820 5005 return newBuilder().mergeFrom(prototype); 4821 5006 } 4822 public Builder toBuilder() { return newBuilder(this); } 5007 @Override 5008 public Builder toBuilder() { return newBuilder(this); } 4823 5009 4824 5010 /** … … 4848 5034 } 4849 5035 4850 public Builder clear() { 5036 @Override 5037 public Builder clear() { 4851 5038 super.clear(); 4852 5039 s_ = java.util.Collections.emptyList(); … … 4855 5042 } 4856 5043 4857 public Builder clone() { 5044 @Override 5045 public Builder clone() { 4858 5046 return create().mergeFrom(buildPartial()); 4859 5047 } 4860 5048 4861 public crosby.binary.Osmformat.StringTable getDefaultInstanceForType() { 5049 @Override 5050 public crosby.binary.Osmformat.StringTable getDefaultInstanceForType() { 4862 5051 return crosby.binary.Osmformat.StringTable.getDefaultInstance(); 4863 5052 } 4864 5053 4865 public crosby.binary.Osmformat.StringTable build() { 5054 @Override 5055 public crosby.binary.Osmformat.StringTable build() { 4866 5056 crosby.binary.Osmformat.StringTable result = buildPartial(); 4867 5057 if (!result.isInitialized()) { … … 4871 5061 } 4872 5062 4873 public crosby.binary.Osmformat.StringTable buildPartial() { 5063 @Override 5064 public crosby.binary.Osmformat.StringTable buildPartial() { 4874 5065 crosby.binary.Osmformat.StringTable result = new crosby.binary.Osmformat.StringTable(this); 4875 5066 int from_bitField0_ = bitField0_; … … 4882 5073 } 4883 5074 4884 public Builder mergeFrom(crosby.binary.Osmformat.StringTable other) { 5075 @Override 5076 public Builder mergeFrom(crosby.binary.Osmformat.StringTable other) { 4885 5077 if (other == crosby.binary.Osmformat.StringTable.getDefaultInstance()) return this; 4886 5078 if (!other.s_.isEmpty()) { … … 4892 5084 s_.addAll(other.s_); 4893 5085 } 4894 5086 4895 5087 } 4896 5088 setUnknownFields( … … 4899 5091 } 4900 5092 4901 public final boolean isInitialized() { 5093 @Override 5094 public final boolean isInitialized() { 4902 5095 return true; 4903 5096 } 4904 5097 4905 public Builder mergeFrom( 5098 @Override 5099 public Builder mergeFrom( 4906 5100 com.google.protobuf.CodedInputStream input, 4907 5101 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4932 5126 * <code>repeated bytes s = 1;</code> 4933 5127 */ 4934 public java.util.List<com.google.protobuf.ByteString> 5128 @Override 5129 public java.util.List<com.google.protobuf.ByteString> 4935 5130 getSList() { 4936 5131 return java.util.Collections.unmodifiableList(s_); … … 4939 5134 * <code>repeated bytes s = 1;</code> 4940 5135 */ 4941 public int getSCount() { 5136 @Override 5137 public int getSCount() { 4942 5138 return s_.size(); 4943 5139 } … … 4945 5141 * <code>repeated bytes s = 1;</code> 4946 5142 */ 4947 public com.google.protobuf.ByteString getS(int index) { 5143 @Override 5144 public com.google.protobuf.ByteString getS(int index) { 4948 5145 return s_.get(index); 4949 5146 } … … 4958 5155 ensureSIsMutable(); 4959 5156 s_.set(index, value); 4960 5157 4961 5158 return this; 4962 5159 } … … 4970 5167 ensureSIsMutable(); 4971 5168 s_.add(value); 4972 5169 4973 5170 return this; 4974 5171 } … … 4981 5178 com.google.protobuf.AbstractMessageLite.Builder.addAll( 4982 5179 values, s_); 4983 5180 4984 5181 return this; 4985 5182 } … … 4990 5187 s_ = java.util.Collections.emptyList(); 4991 5188 bitField0_ = (bitField0_ & ~0x00000001); 4992 5189 4993 5190 return this; 4994 5191 } … … 5097 5294 * 5098 5295 * <pre> 5099 * Optional metadata that may be included into each primitive. 5296 * Optional metadata that may be included into each primitive. 5100 5297 * </pre> 5101 5298 */ … … 5116 5313 } 5117 5314 5118 public Info getDefaultInstanceForType() { 5315 @Override 5316 public Info getDefaultInstanceForType() { 5119 5317 return defaultInstance; 5120 5318 } … … 5197 5395 public static com.google.protobuf.Parser<Info> PARSER = 5198 5396 new com.google.protobuf.AbstractParser<Info>() { 5199 public Info parsePartialFrom( 5397 @Override 5398 public Info parsePartialFrom( 5200 5399 com.google.protobuf.CodedInputStream input, 5201 5400 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 5216 5415 * <code>optional int32 version = 1 [default = -1];</code> 5217 5416 */ 5218 public boolean hasVersion() { 5417 @Override 5418 public boolean hasVersion() { 5219 5419 return ((bitField0_ & 0x00000001) == 0x00000001); 5220 5420 } … … 5222 5422 * <code>optional int32 version = 1 [default = -1];</code> 5223 5423 */ 5224 public int getVersion() { 5424 @Override 5425 public int getVersion() { 5225 5426 return version_; 5226 5427 } … … 5231 5432 * <code>optional int64 timestamp = 2;</code> 5232 5433 */ 5233 public boolean hasTimestamp() { 5434 @Override 5435 public boolean hasTimestamp() { 5234 5436 return ((bitField0_ & 0x00000002) == 0x00000002); 5235 5437 } … … 5237 5439 * <code>optional int64 timestamp = 2;</code> 5238 5440 */ 5239 public long getTimestamp() { 5441 @Override 5442 public long getTimestamp() { 5240 5443 return timestamp_; 5241 5444 } … … 5246 5449 * <code>optional int64 changeset = 3;</code> 5247 5450 */ 5248 public boolean hasChangeset() { 5451 @Override 5452 public boolean hasChangeset() { 5249 5453 return ((bitField0_ & 0x00000004) == 0x00000004); 5250 5454 } … … 5252 5456 * <code>optional int64 changeset = 3;</code> 5253 5457 */ 5254 public long getChangeset() { 5458 @Override 5459 public long getChangeset() { 5255 5460 return changeset_; 5256 5461 } … … 5261 5466 * <code>optional int32 uid = 4;</code> 5262 5467 */ 5263 public boolean hasUid() { 5468 @Override 5469 public boolean hasUid() { 5264 5470 return ((bitField0_ & 0x00000008) == 0x00000008); 5265 5471 } … … 5267 5473 * <code>optional int32 uid = 4;</code> 5268 5474 */ 5269 public int getUid() { 5475 @Override 5476 public int getUid() { 5270 5477 return uid_; 5271 5478 } … … 5280 5487 * </pre> 5281 5488 */ 5282 public boolean hasUserSid() { 5489 @Override 5490 public boolean hasUserSid() { 5283 5491 return ((bitField0_ & 0x00000010) == 0x00000010); 5284 5492 } … … 5290 5498 * </pre> 5291 5499 */ 5292 public int getUserSid() { 5500 @Override 5501 public int getUserSid() { 5293 5502 return userSid_; 5294 5503 } … … 5310 5519 * </pre> 5311 5520 */ 5312 public boolean hasVisible() { 5521 @Override 5522 public boolean hasVisible() { 5313 5523 return ((bitField0_ & 0x00000020) == 0x00000020); 5314 5524 } … … 5327 5537 * </pre> 5328 5538 */ 5329 public boolean getVisible() { 5539 @Override 5540 public boolean getVisible() { 5330 5541 return visible_; 5331 5542 } … … 5340 5551 } 5341 5552 private byte memoizedIsInitialized = -1; 5342 public final boolean isInitialized() { 5553 @Override 5554 public final boolean isInitialized() { 5343 5555 byte isInitialized = memoizedIsInitialized; 5344 5556 if (isInitialized == 1) return true; … … 5349 5561 } 5350 5562 5351 public void writeTo(com.google.protobuf.CodedOutputStream output) 5563 @Override 5564 public void writeTo(com.google.protobuf.CodedOutputStream output) 5352 5565 throws java.io.IOException { 5353 5566 getSerializedSize(); … … 5374 5587 5375 5588 private int memoizedSerializedSize = -1; 5376 public int getSerializedSize() { 5589 @Override 5590 public int getSerializedSize() { 5377 5591 int size = memoizedSerializedSize; 5378 5592 if (size != -1) return size; … … 5469 5683 5470 5684 public static Builder newBuilder() { return Builder.create(); } 5471 public Builder newBuilderForType() { return newBuilder(); } 5685 @Override 5686 public Builder newBuilderForType() { return newBuilder(); } 5472 5687 public static Builder newBuilder(crosby.binary.Osmformat.Info prototype) { 5473 5688 return newBuilder().mergeFrom(prototype); 5474 5689 } 5475 public Builder toBuilder() { return newBuilder(this); } 5690 @Override 5691 public Builder toBuilder() { return newBuilder(this); } 5476 5692 5477 5693 /** … … 5479 5695 * 5480 5696 * <pre> 5481 * Optional metadata that may be included into each primitive. 5697 * Optional metadata that may be included into each primitive. 5482 5698 * </pre> 5483 5699 */ … … 5499 5715 } 5500 5716 5501 public Builder clear() { 5717 @Override 5718 public Builder clear() { 5502 5719 super.clear(); 5503 5720 version_ = -1; … … 5516 5733 } 5517 5734 5518 public Builder clone() { 5735 @Override 5736 public Builder clone() { 5519 5737 return create().mergeFrom(buildPartial()); 5520 5738 } 5521 5739 5522 public crosby.binary.Osmformat.Info getDefaultInstanceForType() { 5740 @Override 5741 public crosby.binary.Osmformat.Info getDefaultInstanceForType() { 5523 5742 return crosby.binary.Osmformat.Info.getDefaultInstance(); 5524 5743 } 5525 5744 5526 public crosby.binary.Osmformat.Info build() { 5745 @Override 5746 public crosby.binary.Osmformat.Info build() { 5527 5747 crosby.binary.Osmformat.Info result = buildPartial(); 5528 5748 if (!result.isInitialized()) { … … 5532 5752 } 5533 5753 5534 public crosby.binary.Osmformat.Info buildPartial() { 5754 @Override 5755 public crosby.binary.Osmformat.Info buildPartial() { 5535 5756 crosby.binary.Osmformat.Info result = new crosby.binary.Osmformat.Info(this); 5536 5757 int from_bitField0_ = bitField0_; … … 5564 5785 } 5565 5786 5566 public Builder mergeFrom(crosby.binary.Osmformat.Info other) { 5787 @Override 5788 public Builder mergeFrom(crosby.binary.Osmformat.Info other) { 5567 5789 if (other == crosby.binary.Osmformat.Info.getDefaultInstance()) return this; 5568 5790 if (other.hasVersion()) { … … 5589 5811 } 5590 5812 5591 public final boolean isInitialized() { 5813 @Override 5814 public final boolean isInitialized() { 5592 5815 return true; 5593 5816 } 5594 5817 5595 public Builder mergeFrom( 5818 @Override 5819 public Builder mergeFrom( 5596 5820 com.google.protobuf.CodedInputStream input, 5597 5821 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 5616 5840 * <code>optional int32 version = 1 [default = -1];</code> 5617 5841 */ 5618 public boolean hasVersion() { 5842 @Override 5843 public boolean hasVersion() { 5619 5844 return ((bitField0_ & 0x00000001) == 0x00000001); 5620 5845 } … … 5622 5847 * <code>optional int32 version = 1 [default = -1];</code> 5623 5848 */ 5624 public int getVersion() { 5849 @Override 5850 public int getVersion() { 5625 5851 return version_; 5626 5852 } … … 5631 5857 bitField0_ |= 0x00000001; 5632 5858 version_ = value; 5633 5859 5634 5860 return this; 5635 5861 } … … 5640 5866 bitField0_ = (bitField0_ & ~0x00000001); 5641 5867 version_ = -1; 5642 5868 5643 5869 return this; 5644 5870 } … … 5648 5874 * <code>optional int64 timestamp = 2;</code> 5649 5875 */ 5650 public boolean hasTimestamp() { 5876 @Override 5877 public boolean hasTimestamp() { 5651 5878 return ((bitField0_ & 0x00000002) == 0x00000002); 5652 5879 } … … 5654 5881 * <code>optional int64 timestamp = 2;</code> 5655 5882 */ 5656 public long getTimestamp() { 5883 @Override 5884 public long getTimestamp() { 5657 5885 return timestamp_; 5658 5886 } … … 5663 5891 bitField0_ |= 0x00000002; 5664 5892 timestamp_ = value; 5665 5893 5666 5894 return this; 5667 5895 } … … 5672 5900 bitField0_ = (bitField0_ & ~0x00000002); 5673 5901 timestamp_ = 0L; 5674 5902 5675 5903 return this; 5676 5904 } … … 5680 5908 * <code>optional int64 changeset = 3;</code> 5681 5909 */ 5682 public boolean hasChangeset() { 5910 @Override 5911 public boolean hasChangeset() { 5683 5912 return ((bitField0_ & 0x00000004) == 0x00000004); 5684 5913 } … … 5686 5915 * <code>optional int64 changeset = 3;</code> 5687 5916 */ 5688 public long getChangeset() { 5917 @Override 5918 public long getChangeset() { 5689 5919 return changeset_; 5690 5920 } … … 5695 5925 bitField0_ |= 0x00000004; 5696 5926 changeset_ = value; 5697 5927 5698 5928 return this; 5699 5929 } … … 5704 5934 bitField0_ = (bitField0_ & ~0x00000004); 5705 5935 changeset_ = 0L; 5706 5936 5707 5937 return this; 5708 5938 } … … 5712 5942 * <code>optional int32 uid = 4;</code> 5713 5943 */ 5714 public boolean hasUid() { 5944 @Override 5945 public boolean hasUid() { 5715 5946 return ((bitField0_ & 0x00000008) == 0x00000008); 5716 5947 } … … 5718 5949 * <code>optional int32 uid = 4;</code> 5719 5950 */ 5720 public int getUid() { 5951 @Override 5952 public int getUid() { 5721 5953 return uid_; 5722 5954 } … … 5727 5959 bitField0_ |= 0x00000008; 5728 5960 uid_ = value; 5729 5961 5730 5962 return this; 5731 5963 } … … 5736 5968 bitField0_ = (bitField0_ & ~0x00000008); 5737 5969 uid_ = 0; 5738 5970 5739 5971 return this; 5740 5972 } … … 5748 5980 * </pre> 5749 5981 */ 5750 public boolean hasUserSid() { 5982 @Override 5983 public boolean hasUserSid() { 5751 5984 return ((bitField0_ & 0x00000010) == 0x00000010); 5752 5985 } … … 5758 5991 * </pre> 5759 5992 */ 5760 public int getUserSid() { 5993 @Override 5994 public int getUserSid() { 5761 5995 return userSid_; 5762 5996 } … … 5771 6005 bitField0_ |= 0x00000010; 5772 6006 userSid_ = value; 5773 6007 5774 6008 return this; 5775 6009 } … … 5784 6018 bitField0_ = (bitField0_ & ~0x00000010); 5785 6019 userSid_ = 0; 5786 6020 5787 6021 return this; 5788 6022 } … … 5803 6037 * </pre> 5804 6038 */ 5805 public boolean hasVisible() { 6039 @Override 6040 public boolean hasVisible() { 5806 6041 return ((bitField0_ & 0x00000020) == 0x00000020); 5807 6042 } … … 5820 6055 * </pre> 5821 6056 */ 5822 public boolean getVisible() { 6057 @Override 6058 public boolean getVisible() { 5823 6059 return visible_; 5824 6060 } … … 5840 6076 bitField0_ |= 0x00000020; 5841 6077 visible_ = value; 5842 6078 5843 6079 return this; 5844 6080 } … … 5860 6096 bitField0_ = (bitField0_ & ~0x00000020); 5861 6097 visible_ = false; 5862 6098 5863 6099 return this; 5864 6100 } … … 6042 6278 * 6043 6279 * <pre> 6044 ** Optional metadata that may be included into each primitive. Special dense format used in DenseNodes. 6280 ** Optional metadata that may be included into each primitive. Special dense format used in DenseNodes. 6045 6281 * </pre> 6046 6282 */ … … 6061 6297 } 6062 6298 6063 public DenseInfo getDefaultInstanceForType() { 6299 @Override 6300 public DenseInfo getDefaultInstanceForType() { 6064 6301 return defaultInstance; 6065 6302 } … … 6256 6493 public static com.google.protobuf.Parser<DenseInfo> PARSER = 6257 6494 new com.google.protobuf.AbstractParser<DenseInfo>() { 6258 public DenseInfo parsePartialFrom( 6495 @Override 6496 public DenseInfo parsePartialFrom( 6259 6497 com.google.protobuf.CodedInputStream input, 6260 6498 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 6274 6512 * <code>repeated int32 version = 1 [packed = true];</code> 6275 6513 */ 6276 public java.util.List<java.lang.Integer> 6514 @Override 6515 public java.util.List<java.lang.Integer> 6277 6516 getVersionList() { 6278 6517 return version_; … … 6281 6520 * <code>repeated int32 version = 1 [packed = true];</code> 6282 6521 */ 6283 public int getVersionCount() { 6522 @Override 6523 public int getVersionCount() { 6284 6524 return version_.size(); 6285 6525 } … … 6287 6527 * <code>repeated int32 version = 1 [packed = true];</code> 6288 6528 */ 6289 public int getVersion(int index) { 6529 @Override 6530 public int getVersion(int index) { 6290 6531 return version_.get(index); 6291 6532 } … … 6301 6542 * </pre> 6302 6543 */ 6303 public java.util.List<java.lang.Long> 6544 @Override 6545 public java.util.List<java.lang.Long> 6304 6546 getTimestampList() { 6305 6547 return timestamp_; … … 6312 6554 * </pre> 6313 6555 */ 6314 public int getTimestampCount() { 6556 @Override 6557 public int getTimestampCount() { 6315 6558 return timestamp_.size(); 6316 6559 } … … 6322 6565 * </pre> 6323 6566 */ 6324 public long getTimestamp(int index) { 6567 @Override 6568 public long getTimestamp(int index) { 6325 6569 return timestamp_.get(index); 6326 6570 } … … 6336 6580 * </pre> 6337 6581 */ 6338 public java.util.List<java.lang.Long> 6582 @Override 6583 public java.util.List<java.lang.Long> 6339 6584 getChangesetList() { 6340 6585 return changeset_; … … 6347 6592 * </pre> 6348 6593 */ 6349 public int getChangesetCount() { 6594 @Override 6595 public int getChangesetCount() { 6350 6596 return changeset_.size(); 6351 6597 } … … 6357 6603 * </pre> 6358 6604 */ 6359 public long getChangeset(int index) { 6605 @Override 6606 public long getChangeset(int index) { 6360 6607 return changeset_.get(index); 6361 6608 } … … 6371 6618 * </pre> 6372 6619 */ 6373 public java.util.List<java.lang.Integer> 6620 @Override 6621 public java.util.List<java.lang.Integer> 6374 6622 getUidList() { 6375 6623 return uid_; … … 6382 6630 * </pre> 6383 6631 */ 6384 public int getUidCount() { 6632 @Override 6633 public int getUidCount() { 6385 6634 return uid_.size(); 6386 6635 } … … 6392 6641 * </pre> 6393 6642 */ 6394 public int getUid(int index) { 6643 @Override 6644 public int getUid(int index) { 6395 6645 return uid_.get(index); 6396 6646 } … … 6406 6656 * </pre> 6407 6657 */ 6408 public java.util.List<java.lang.Integer> 6658 @Override 6659 public java.util.List<java.lang.Integer> 6409 6660 getUserSidList() { 6410 6661 return userSid_; … … 6417 6668 * </pre> 6418 6669 */ 6419 public int getUserSidCount() { 6670 @Override 6671 public int getUserSidCount() { 6420 6672 return userSid_.size(); 6421 6673 } … … 6427 6679 * </pre> 6428 6680 */ 6429 public int getUserSid(int index) { 6681 @Override 6682 public int getUserSid(int index) { 6430 6683 return userSid_.get(index); 6431 6684 } … … 6448 6701 * </pre> 6449 6702 */ 6450 public java.util.List<java.lang.Boolean> 6703 @Override 6704 public java.util.List<java.lang.Boolean> 6451 6705 getVisibleList() { 6452 6706 return visible_; … … 6466 6720 * </pre> 6467 6721 */ 6468 public int getVisibleCount() { 6722 @Override 6723 public int getVisibleCount() { 6469 6724 return visible_.size(); 6470 6725 } … … 6483 6738 * </pre> 6484 6739 */ 6485 public boolean getVisible(int index) { 6740 @Override 6741 public boolean getVisible(int index) { 6486 6742 return visible_.get(index); 6487 6743 } … … 6497 6753 } 6498 6754 private byte memoizedIsInitialized = -1; 6499 public final boolean isInitialized() { 6755 @Override 6756 public final boolean isInitialized() { 6500 6757 byte isInitialized = memoizedIsInitialized; 6501 6758 if (isInitialized == 1) return true; … … 6506 6763 } 6507 6764 6508 public void writeTo(com.google.protobuf.CodedOutputStream output) 6765 @Override 6766 public void writeTo(com.google.protobuf.CodedOutputStream output) 6509 6767 throws java.io.IOException { 6510 6768 getSerializedSize(); … … 6555 6813 6556 6814 private int memoizedSerializedSize = -1; 6557 public int getSerializedSize() { 6815 @Override 6816 public int getSerializedSize() { 6558 6817 int size = memoizedSerializedSize; 6559 6818 if (size != -1) return size; … … 6707 6966 6708 6967 public static Builder newBuilder() { return Builder.create(); } 6709 public Builder newBuilderForType() { return newBuilder(); } 6968 @Override 6969 public Builder newBuilderForType() { return newBuilder(); } 6710 6970 public static Builder newBuilder(crosby.binary.Osmformat.DenseInfo prototype) { 6711 6971 return newBuilder().mergeFrom(prototype); 6712 6972 } 6713 public Builder toBuilder() { return newBuilder(this); } 6973 @Override 6974 public Builder toBuilder() { return newBuilder(this); } 6714 6975 6715 6976 /** … … 6717 6978 * 6718 6979 * <pre> 6719 ** Optional metadata that may be included into each primitive. Special dense format used in DenseNodes. 6980 ** Optional metadata that may be included into each primitive. Special dense format used in DenseNodes. 6720 6981 * </pre> 6721 6982 */ … … 6737 6998 } 6738 6999 6739 public Builder clear() { 7000 @Override 7001 public Builder clear() { 6740 7002 super.clear(); 6741 7003 version_ = java.util.Collections.emptyList(); … … 6754 7016 } 6755 7017 6756 public Builder clone() { 7018 @Override 7019 public Builder clone() { 6757 7020 return create().mergeFrom(buildPartial()); 6758 7021 } 6759 7022 6760 public crosby.binary.Osmformat.DenseInfo getDefaultInstanceForType() { 7023 @Override 7024 public crosby.binary.Osmformat.DenseInfo getDefaultInstanceForType() { 6761 7025 return crosby.binary.Osmformat.DenseInfo.getDefaultInstance(); 6762 7026 } 6763 7027 6764 public crosby.binary.Osmformat.DenseInfo build() { 7028 @Override 7029 public crosby.binary.Osmformat.DenseInfo build() { 6765 7030 crosby.binary.Osmformat.DenseInfo result = buildPartial(); 6766 7031 if (!result.isInitialized()) { … … 6770 7035 } 6771 7036 6772 public crosby.binary.Osmformat.DenseInfo buildPartial() { 7037 @Override 7038 public crosby.binary.Osmformat.DenseInfo buildPartial() { 6773 7039 crosby.binary.Osmformat.DenseInfo result = new crosby.binary.Osmformat.DenseInfo(this); 6774 7040 int from_bitField0_ = bitField0_; … … 6806 7072 } 6807 7073 6808 public Builder mergeFrom(crosby.binary.Osmformat.DenseInfo other) { 7074 @Override 7075 public Builder mergeFrom(crosby.binary.Osmformat.DenseInfo other) { 6809 7076 if (other == crosby.binary.Osmformat.DenseInfo.getDefaultInstance()) return this; 6810 7077 if (!other.version_.isEmpty()) { … … 6816 7083 version_.addAll(other.version_); 6817 7084 } 6818 7085 6819 7086 } 6820 7087 if (!other.timestamp_.isEmpty()) { … … 6826 7093 timestamp_.addAll(other.timestamp_); 6827 7094 } 6828 7095 6829 7096 } 6830 7097 if (!other.changeset_.isEmpty()) { … … 6836 7103 changeset_.addAll(other.changeset_); 6837 7104 } 6838 7105 6839 7106 } 6840 7107 if (!other.uid_.isEmpty()) { … … 6846 7113 uid_.addAll(other.uid_); 6847 7114 } 6848 7115 6849 7116 } 6850 7117 if (!other.userSid_.isEmpty()) { … … 6856 7123 userSid_.addAll(other.userSid_); 6857 7124 } 6858 7125 6859 7126 } 6860 7127 if (!other.visible_.isEmpty()) { … … 6866 7133 visible_.addAll(other.visible_); 6867 7134 } 6868 7135 6869 7136 } 6870 7137 setUnknownFields( … … 6873 7140 } 6874 7141 6875 public final boolean isInitialized() { 7142 @Override 7143 public final boolean isInitialized() { 6876 7144 return true; 6877 7145 } 6878 7146 6879 public Builder mergeFrom( 7147 @Override 7148 public Builder mergeFrom( 6880 7149 com.google.protobuf.CodedInputStream input, 6881 7150 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 6906 7175 * <code>repeated int32 version = 1 [packed = true];</code> 6907 7176 */ 6908 public java.util.List<java.lang.Integer> 7177 @Override 7178 public java.util.List<java.lang.Integer> 6909 7179 getVersionList() { 6910 7180 return java.util.Collections.unmodifiableList(version_); … … 6913 7183 * <code>repeated int32 version = 1 [packed = true];</code> 6914 7184 */ 6915 public int getVersionCount() { 7185 @Override 7186 public int getVersionCount() { 6916 7187 return version_.size(); 6917 7188 } … … 6919 7190 * <code>repeated int32 version = 1 [packed = true];</code> 6920 7191 */ 6921 public int getVersion(int index) { 7192 @Override 7193 public int getVersion(int index) { 6922 7194 return version_.get(index); 6923 7195 } … … 6929 7201 ensureVersionIsMutable(); 6930 7202 version_.set(index, value); 6931 7203 6932 7204 return this; 6933 7205 } … … 6938 7210 ensureVersionIsMutable(); 6939 7211 version_.add(value); 6940 7212 6941 7213 return this; 6942 7214 } … … 6949 7221 com.google.protobuf.AbstractMessageLite.Builder.addAll( 6950 7222 values, version_); 6951 7223 6952 7224 return this; 6953 7225 } … … 6958 7230 version_ = java.util.Collections.emptyList(); 6959 7231 bitField0_ = (bitField0_ & ~0x00000001); 6960 7232 6961 7233 return this; 6962 7234 } … … 6976 7248 * </pre> 6977 7249 */ 6978 public java.util.List<java.lang.Long> 7250 @Override 7251 public java.util.List<java.lang.Long> 6979 7252 getTimestampList() { 6980 7253 return java.util.Collections.unmodifiableList(timestamp_); … … 6987 7260 * </pre> 6988 7261 */ 6989 public int getTimestampCount() { 7262 @Override 7263 public int getTimestampCount() { 6990 7264 return timestamp_.size(); 6991 7265 } … … 6997 7271 * </pre> 6998 7272 */ 6999 public long getTimestamp(int index) { 7273 @Override 7274 public long getTimestamp(int index) { 7000 7275 return timestamp_.get(index); 7001 7276 } … … 7011 7286 ensureTimestampIsMutable(); 7012 7287 timestamp_.set(index, value); 7013 7288 7014 7289 return this; 7015 7290 } … … 7024 7299 ensureTimestampIsMutable(); 7025 7300 timestamp_.add(value); 7026 7301 7027 7302 return this; 7028 7303 } … … 7039 7314 com.google.protobuf.AbstractMessageLite.Builder.addAll( 7040 7315 values, timestamp_); 7041 7316 7042 7317 return this; 7043 7318 } … … 7052 7327 timestamp_ = java.util.Collections.emptyList(); 7053 7328 bitField0_ = (bitField0_ & ~0x00000002); 7054 7329 7055 7330 return this; 7056 7331 } … … 7070 7345 * </pre> 7071 7346 */ 7072 public java.util.List<java.lang.Long> 7347 @Override 7348 public java.util.List<java.lang.Long> 7073 7349 getChangesetList() { 7074 7350 return java.util.Collections.unmodifiableList(changeset_); … … 7081 7357 * </pre> 7082 7358 */ 7083 public int getChangesetCount() { 7359 @Override 7360 public int getChangesetCount() { 7084 7361 return changeset_.size(); 7085 7362 } … … 7091 7368 * </pre> 7092 7369 */ 7093 public long getChangeset(int index) { 7370 @Override 7371 public long getChangeset(int index) { 7094 7372 return changeset_.get(index); 7095 7373 } … … 7105 7383 ensureChangesetIsMutable(); 7106 7384 changeset_.set(index, value); 7107 7385 7108 7386 return this; 7109 7387 } … … 7118 7396 ensureChangesetIsMutable(); 7119 7397 changeset_.add(value); 7120 7398 7121 7399 return this; 7122 7400 } … … 7133 7411 com.google.protobuf.AbstractMessageLite.Builder.addAll( 7134 7412 values, changeset_); 7135 7413 7136 7414 return this; 7137 7415 } … … 7146 7424 changeset_ = java.util.Collections.emptyList(); 7147 7425 bitField0_ = (bitField0_ & ~0x00000004); 7148 7426 7149 7427 return this; 7150 7428 } … … 7164 7442 * </pre> 7165 7443 */ 7166 public java.util.List<java.lang.Integer> 7444 @Override 7445 public java.util.List<java.lang.Integer> 7167 7446 getUidList() { 7168 7447 return java.util.Collections.unmodifiableList(uid_); … … 7175 7454 * </pre> 7176 7455 */ 7177 public int getUidCount() { 7456 @Override 7457 public int getUidCount() { 7178 7458 return uid_.size(); 7179 7459 } … … 7185 7465 * </pre> 7186 7466 */ 7187 public int getUid(int index) { 7467 @Override 7468 public int getUid(int index) { 7188 7469 return uid_.get(index); 7189 7470 } … … 7199 7480 ensureUidIsMutable(); 7200 7481 uid_.set(index, value); 7201 7482 7202 7483 return this; 7203 7484 } … … 7212 7493 ensureUidIsMutable(); 7213 7494 uid_.add(value); 7214 7495 7215 7496 return this; 7216 7497 } … … 7227 7508 com.google.protobuf.AbstractMessageLite.Builder.addAll( 7228 7509 values, uid_); 7229 7510 7230 7511 return this; 7231 7512 } … … 7240 7521 uid_ = java.util.Collections.emptyList(); 7241 7522 bitField0_ = (bitField0_ & ~0x00000008); 7242 7523 7243 7524 return this; 7244 7525 } … … 7258 7539 * </pre> 7259 7540 */ 7260 public java.util.List<java.lang.Integer> 7541 @Override 7542 public java.util.List<java.lang.Integer> 7261 7543 getUserSidList() { 7262 7544 return java.util.Collections.unmodifiableList(userSid_); … … 7269 7551 * </pre> 7270 7552 */ 7271 public int getUserSidCount() { 7553 @Override 7554 public int getUserSidCount() { 7272 7555 return userSid_.size(); 7273 7556 } … … 7279 7562 * </pre> 7280 7563 */ 7281 public int getUserSid(int index) { 7564 @Override 7565 public int getUserSid(int index) { 7282 7566 return userSid_.get(index); 7283 7567 } … … 7293 7577 ensureUserSidIsMutable(); 7294 7578 userSid_.set(index, value); 7295 7579 7296 7580 return this; 7297 7581 } … … 7306 7590 ensureUserSidIsMutable(); 7307 7591 userSid_.add(value); 7308 7592 7309 7593 return this; 7310 7594 } … … 7321 7605 com.google.protobuf.AbstractMessageLite.Builder.addAll( 7322 7606 values, userSid_); 7323 7607 7324 7608 return this; 7325 7609 } … … 7334 7618 userSid_ = java.util.Collections.emptyList(); 7335 7619 bitField0_ = (bitField0_ & ~0x00000010); 7336 7620 7337 7621 return this; 7338 7622 } … … 7359 7643 * </pre> 7360 7644 */ 7361 public java.util.List<java.lang.Boolean> 7645 @Override 7646 public java.util.List<java.lang.Boolean> 7362 7647 getVisibleList() { 7363 7648 return java.util.Collections.unmodifiableList(visible_); … … 7377 7662 * </pre> 7378 7663 */ 7379 public int getVisibleCount() { 7664 @Override 7665 public int getVisibleCount() { 7380 7666 return visible_.size(); 7381 7667 } … … 7394 7680 * </pre> 7395 7681 */ 7396 public boolean getVisible(int index) { 7682 @Override 7683 public boolean getVisible(int index) { 7397 7684 return visible_.get(index); 7398 7685 } … … 7415 7702 ensureVisibleIsMutable(); 7416 7703 visible_.set(index, value); 7417 7704 7418 7705 return this; 7419 7706 } … … 7435 7722 ensureVisibleIsMutable(); 7436 7723 visible_.add(value); 7437 7724 7438 7725 return this; 7439 7726 } … … 7457 7744 com.google.protobuf.AbstractMessageLite.Builder.addAll( 7458 7745 values, visible_); 7459 7746 7460 7747 return this; 7461 7748 } … … 7477 7764 visible_ = java.util.Collections.emptyList(); 7478 7765 bitField0_ = (bitField0_ & ~0x00000020); 7479 7766 7480 7767 return this; 7481 7768 } … … 7500 7787 * 7501 7788 * <pre> 7502 * 7789 * 7503 7790 * // Parallel arrays. 7504 7791 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7512 7799 * 7513 7800 * <pre> 7514 * 7801 * 7515 7802 * // Parallel arrays. 7516 7803 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7545 7832 } 7546 7833 7547 public ChangeSet getDefaultInstanceForType() { 7834 @Override 7835 public ChangeSet getDefaultInstanceForType() { 7548 7836 return defaultInstance; 7549 7837 } … … 7601 7889 public static com.google.protobuf.Parser<ChangeSet> PARSER = 7602 7890 new com.google.protobuf.AbstractParser<ChangeSet>() { 7603 public ChangeSet parsePartialFrom( 7891 @Override 7892 public ChangeSet parsePartialFrom( 7604 7893 com.google.protobuf.CodedInputStream input, 7605 7894 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 7621 7910 * 7622 7911 * <pre> 7623 * 7912 * 7624 7913 * // Parallel arrays. 7625 7914 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7628 7917 * </pre> 7629 7918 */ 7630 public boolean hasId() { 7919 @Override 7920 public boolean hasId() { 7631 7921 return ((bitField0_ & 0x00000001) == 0x00000001); 7632 7922 } … … 7635 7925 * 7636 7926 * <pre> 7637 * 7927 * 7638 7928 * // Parallel arrays. 7639 7929 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7642 7932 * </pre> 7643 7933 */ 7644 public long getId() { 7934 @Override 7935 public long getId() { 7645 7936 return id_; 7646 7937 } … … 7650 7941 } 7651 7942 private byte memoizedIsInitialized = -1; 7652 public final boolean isInitialized() { 7943 @Override 7944 public final boolean isInitialized() { 7653 7945 byte isInitialized = memoizedIsInitialized; 7654 7946 if (isInitialized == 1) return true; … … 7663 7955 } 7664 7956 7665 public void writeTo(com.google.protobuf.CodedOutputStream output) 7957 @Override 7958 public void writeTo(com.google.protobuf.CodedOutputStream output) 7666 7959 throws java.io.IOException { 7667 7960 getSerializedSize(); … … 7673 7966 7674 7967 private int memoizedSerializedSize = -1; 7675 public int getSerializedSize() { 7968 @Override 7969 public int getSerializedSize() { 7676 7970 int size = memoizedSerializedSize; 7677 7971 if (size != -1) return size; … … 7748 8042 7749 8043 public static Builder newBuilder() { return Builder.create(); } 7750 public Builder newBuilderForType() { return newBuilder(); } 8044 @Override 8045 public Builder newBuilderForType() { return newBuilder(); } 7751 8046 public static Builder newBuilder(crosby.binary.Osmformat.ChangeSet prototype) { 7752 8047 return newBuilder().mergeFrom(prototype); 7753 8048 } 7754 public Builder toBuilder() { return newBuilder(this); } 8049 @Override 8050 public Builder toBuilder() { return newBuilder(this); } 7755 8051 7756 8052 /** … … 7779 8075 } 7780 8076 7781 public Builder clear() { 8077 @Override 8078 public Builder clear() { 7782 8079 super.clear(); 7783 8080 id_ = 0L; … … 7786 8083 } 7787 8084 7788 public Builder clone() { 8085 @Override 8086 public Builder clone() { 7789 8087 return create().mergeFrom(buildPartial()); 7790 8088 } 7791 8089 7792 public crosby.binary.Osmformat.ChangeSet getDefaultInstanceForType() { 8090 @Override 8091 public crosby.binary.Osmformat.ChangeSet getDefaultInstanceForType() { 7793 8092 return crosby.binary.Osmformat.ChangeSet.getDefaultInstance(); 7794 8093 } 7795 8094 7796 public crosby.binary.Osmformat.ChangeSet build() { 8095 @Override 8096 public crosby.binary.Osmformat.ChangeSet build() { 7797 8097 crosby.binary.Osmformat.ChangeSet result = buildPartial(); 7798 8098 if (!result.isInitialized()) { … … 7802 8102 } 7803 8103 7804 public crosby.binary.Osmformat.ChangeSet buildPartial() { 8104 @Override 8105 public crosby.binary.Osmformat.ChangeSet buildPartial() { 7805 8106 crosby.binary.Osmformat.ChangeSet result = new crosby.binary.Osmformat.ChangeSet(this); 7806 8107 int from_bitField0_ = bitField0_; … … 7814 8115 } 7815 8116 7816 public Builder mergeFrom(crosby.binary.Osmformat.ChangeSet other) { 8117 @Override 8118 public Builder mergeFrom(crosby.binary.Osmformat.ChangeSet other) { 7817 8119 if (other == crosby.binary.Osmformat.ChangeSet.getDefaultInstance()) return this; 7818 8120 if (other.hasId()) { … … 7824 8126 } 7825 8127 7826 public final boolean isInitialized() { 8128 @Override 8129 public final boolean isInitialized() { 7827 8130 if (!hasId()) { 7828 8131 7829 8132 return false; 7830 8133 } … … 7832 8135 } 7833 8136 7834 public Builder mergeFrom( 8137 @Override 8138 public Builder mergeFrom( 7835 8139 com.google.protobuf.CodedInputStream input, 7836 8140 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 7856 8160 * 7857 8161 * <pre> 7858 * 8162 * 7859 8163 * // Parallel arrays. 7860 8164 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7863 8167 * </pre> 7864 8168 */ 7865 public boolean hasId() { 8169 @Override 8170 public boolean hasId() { 7866 8171 return ((bitField0_ & 0x00000001) == 0x00000001); 7867 8172 } … … 7870 8175 * 7871 8176 * <pre> 7872 * 8177 * 7873 8178 * // Parallel arrays. 7874 8179 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7877 8182 * </pre> 7878 8183 */ 7879 public long getId() { 8184 @Override 8185 public long getId() { 7880 8186 return id_; 7881 8187 } … … 7884 8190 * 7885 8191 * <pre> 7886 * 8192 * 7887 8193 * // Parallel arrays. 7888 8194 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7894 8200 bitField0_ |= 0x00000001; 7895 8201 id_ = value; 7896 8202 7897 8203 return this; 7898 8204 } … … 7901 8207 * 7902 8208 * <pre> 7903 * 8209 * 7904 8210 * // Parallel arrays. 7905 8211 * repeated uint32 keys = 2 [packed = true]; // String IDs. … … 7911 8217 bitField0_ = (bitField0_ & ~0x00000001); 7912 8218 id_ = 0L; 7913 8219 7914 8220 return this; 7915 8221 } … … 8043 8349 } 8044 8350 8045 public Node getDefaultInstanceForType() { 8351 @Override 8352 public Node getDefaultInstanceForType() { 8046 8353 return defaultInstance; 8047 8354 } … … 8170 8477 public static com.google.protobuf.Parser<Node> PARSER = 8171 8478 new com.google.protobuf.AbstractParser<Node>() { 8172 public Node parsePartialFrom( 8479 @Override 8480 public Node parsePartialFrom( 8173 8481 com.google.protobuf.CodedInputStream input, 8174 8482 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 8189 8497 * <code>required sint64 id = 1;</code> 8190 8498 */ 8191 public boolean hasId() { 8499 @Override 8500 public boolean hasId() { 8192 8501 return ((bitField0_ & 0x00000001) == 0x00000001); 8193 8502 } … … 8195 8504 * <code>required sint64 id = 1;</code> 8196 8505 */ 8197 public long getId() { 8506 @Override 8507 public long getId() { 8198 8508 return id_; 8199 8509 } … … 8208 8518 * </pre> 8209 8519 */ 8210 public java.util.List<java.lang.Integer> 8520 @Override 8521 public java.util.List<java.lang.Integer> 8211 8522 getKeysList() { 8212 8523 return keys_; … … 8219 8530 * </pre> 8220 8531 */ 8221 public int getKeysCount() { 8532 @Override 8533 public int getKeysCount() { 8222 8534 return keys_.size(); 8223 8535 } … … 8229 8541 * </pre> 8230 8542 */ 8231 public int getKeys(int index) { 8543 @Override 8544 public int getKeys(int index) { 8232 8545 return keys_.get(index); 8233 8546 } … … 8243 8556 * </pre> 8244 8557 */ 8245 public java.util.List<java.lang.Integer> 8558 @Override 8559 public java.util.List<java.lang.Integer> 8246 8560 getValsList() { 8247 8561 return vals_; … … 8254 8568 * </pre> 8255 8569 */ 8256 public int getValsCount() { 8570 @Override 8571 public int getValsCount() { 8257 8572 return vals_.size(); 8258 8573 } … … 8264 8579 * </pre> 8265 8580 */ 8266 public int getVals(int index) { 8581 @Override 8582 public int getVals(int index) { 8267 8583 return vals_.get(index); 8268 8584 } … … 8278 8594 * </pre> 8279 8595 */ 8280 public boolean hasInfo() { 8596 @Override 8597 public boolean hasInfo() { 8281 8598 return ((bitField0_ & 0x00000002) == 0x00000002); 8282 8599 } … … 8288 8605 * </pre> 8289 8606 */ 8290 public crosby.binary.Osmformat.Info getInfo() { 8607 @Override 8608 public crosby.binary.Osmformat.Info getInfo() { 8291 8609 return info_; 8292 8610 } … … 8297 8615 * <code>required sint64 lat = 8;</code> 8298 8616 */ 8299 public boolean hasLat() { 8617 @Override 8618 public boolean hasLat() { 8300 8619 return ((bitField0_ & 0x00000004) == 0x00000004); 8301 8620 } … … 8303 8622 * <code>required sint64 lat = 8;</code> 8304 8623 */ 8305 public long getLat() { 8624 @Override 8625 public long getLat() { 8306 8626 return lat_; 8307 8627 } … … 8312 8632 * <code>required sint64 lon = 9;</code> 8313 8633 */ 8314 public boolean hasLon() { 8634 @Override 8635 public boolean hasLon() { 8315 8636 return ((bitField0_ & 0x00000008) == 0x00000008); 8316 8637 } … … 8318 8639 * <code>required sint64 lon = 9;</code> 8319 8640 */ 8320 public long getLon() { 8641 @Override 8642 public long getLon() { 8321 8643 return lon_; 8322 8644 } … … 8331 8653 } 8332 8654 private byte memoizedIsInitialized = -1; 8333 public final boolean isInitialized() { 8655 @Override 8656 public final boolean isInitialized() { 8334 8657 byte isInitialized = memoizedIsInitialized; 8335 8658 if (isInitialized == 1) return true; … … 8352 8675 } 8353 8676 8354 public void writeTo(com.google.protobuf.CodedOutputStream output) 8677 @Override 8678 public void writeTo(com.google.protobuf.CodedOutputStream output) 8355 8679 throws java.io.IOException { 8356 8680 getSerializedSize(); … … 8385 8709 8386 8710 private int memoizedSerializedSize = -1; 8387 public int getSerializedSize() { 8711 @Override 8712 public int getSerializedSize() { 8388 8713 int size = memoizedSerializedSize; 8389 8714 if (size != -1) return size; … … 8500 8825 8501 8826 public static Builder newBuilder() { return Builder.create(); } 8502 public Builder newBuilderForType() { return newBuilder(); } 8827 @Override 8828 public Builder newBuilderForType() { return newBuilder(); } 8503 8829 public static Builder newBuilder(crosby.binary.Osmformat.Node prototype) { 8504 8830 return newBuilder().mergeFrom(prototype); 8505 8831 } 8506 public Builder toBuilder() { return newBuilder(this); } 8832 @Override 8833 public Builder toBuilder() { return newBuilder(this); } 8507 8834 8508 8835 /** … … 8526 8853 } 8527 8854 8528 public Builder clear() { 8855 @Override 8856 public Builder clear() { 8529 8857 super.clear(); 8530 8858 id_ = 0L; … … 8543 8871 } 8544 8872 8545 public Builder clone() { 8873 @Override 8874 public Builder clone() { 8546 8875 return create().mergeFrom(buildPartial()); 8547 8876 } 8548 8877 8549 public crosby.binary.Osmformat.Node getDefaultInstanceForType() { 8878 @Override 8879 public crosby.binary.Osmformat.Node getDefaultInstanceForType() { 8550 8880 return crosby.binary.Osmformat.Node.getDefaultInstance(); 8551 8881 } 8552 8882 8553 public crosby.binary.Osmformat.Node build() { 8883 @Override 8884 public crosby.binary.Osmformat.Node build() { 8554 8885 crosby.binary.Osmformat.Node result = buildPartial(); 8555 8886 if (!result.isInitialized()) { … … 8559 8890 } 8560 8891 8561 public crosby.binary.Osmformat.Node buildPartial() { 8892 @Override 8893 public crosby.binary.Osmformat.Node buildPartial() { 8562 8894 crosby.binary.Osmformat.Node result = new crosby.binary.Osmformat.Node(this); 8563 8895 int from_bitField0_ = bitField0_; … … 8593 8925 } 8594 8926 8595 public Builder mergeFrom(crosby.binary.Osmformat.Node other) { 8927 @Override 8928 public Builder mergeFrom(crosby.binary.Osmformat.Node other) { 8596 8929 if (other == crosby.binary.Osmformat.Node.getDefaultInstance()) return this; 8597 8930 if (other.hasId()) { … … 8606 8939 keys_.addAll(other.keys_); 8607 8940 } 8608 8941 8609 8942 } 8610 8943 if (!other.vals_.isEmpty()) { … … 8616 8949 vals_.addAll(other.vals_); 8617 8950 } 8618 8951 8619 8952 } 8620 8953 if (other.hasInfo()) { … … 8632 8965 } 8633 8966 8634 public final boolean isInitialized() { 8967 @Override 8968 public final boolean isInitialized() { 8635 8969 if (!hasId()) { 8636 8970 8637 8971 return false; 8638 8972 } 8639 8973 if (!hasLat()) { 8640 8974 8641 8975 return false; 8642 8976 } 8643 8977 if (!hasLon()) { 8644 8978 8645 8979 return false; 8646 8980 } … … 8648 8982 } 8649 8983 8650 public Builder mergeFrom( 8984 @Override 8985 public Builder mergeFrom( 8651 8986 com.google.protobuf.CodedInputStream input, 8652 8987 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 8671 9006 * <code>required sint64 id = 1;</code> 8672 9007 */ 8673 public boolean hasId() { 9008 @Override 9009 public boolean hasId() { 8674 9010 return ((bitField0_ & 0x00000001) == 0x00000001); 8675 9011 } … … 8677 9013 * <code>required sint64 id = 1;</code> 8678 9014 */ 8679 public long getId() { 9015 @Override 9016 public long getId() { 8680 9017 return id_; 8681 9018 } … … 8686 9023 bitField0_ |= 0x00000001; 8687 9024 id_ = value; 8688 9025 8689 9026 return this; 8690 9027 } … … 8695 9032 bitField0_ = (bitField0_ & ~0x00000001); 8696 9033 id_ = 0L; 8697 9034 8698 9035 return this; 8699 9036 } … … 8713 9050 * </pre> 8714 9051 */ 8715 public java.util.List<java.lang.Integer> 9052 @Override 9053 public java.util.List<java.lang.Integer> 8716 9054 getKeysList() { 8717 9055 return java.util.Collections.unmodifiableList(keys_); … … 8724 9062 * </pre> 8725 9063 */ 8726 public int getKeysCount() { 9064 @Override 9065 public int getKeysCount() { 8727 9066 return keys_.size(); 8728 9067 } … … 8734 9073 * </pre> 8735 9074 */ 8736 public int getKeys(int index) { 9075 @Override 9076 public int getKeys(int index) { 8737 9077 return keys_.get(index); 8738 9078 } … … 8748 9088 ensureKeysIsMutable(); 8749 9089 keys_.set(index, value); 8750 9090 8751 9091 return this; 8752 9092 } … … 8761 9101 ensureKeysIsMutable(); 8762 9102 keys_.add(value); 8763 9103 8764 9104 return this; 8765 9105 } … … 8776 9116 com.google.protobuf.AbstractMessageLite.Builder.addAll( 8777 9117 values, keys_); 8778 9118 8779 9119 return this; 8780 9120 } … … 8789 9129 keys_ = java.util.Collections.emptyList(); 8790 9130 bitField0_ = (bitField0_ & ~0x00000002); 8791 9131 8792 9132 return this; 8793 9133 } … … 8807 9147 * </pre> 8808 9148 */ 8809 public java.util.List<java.lang.Integer> 9149 @Override 9150 public java.util.List<java.lang.Integer> 8810 9151 getValsList() { 8811 9152 return java.util.Collections.unmodifiableList(vals_); … … 8818 9159 * </pre> 8819 9160 */ 8820 public int getValsCount() { 9161 @Override 9162 public int getValsCount() { 8821 9163 return vals_.size(); 8822 9164 } … … 8828 9170 * </pre> 8829 9171 */ 8830 public int getVals(int index) { 9172 @Override 9173 public int getVals(int index) { 8831 9174 return vals_.get(index); 8832 9175 } … … 8842 9185 ensureValsIsMutable(); 8843 9186 vals_.set(index, value); 8844 9187 8845 9188 return this; 8846 9189 } … … 8855 9198 ensureValsIsMutable(); 8856 9199 vals_.add(value); 8857 9200 8858 9201 return this; 8859 9202 } … … 8870 9213 com.google.protobuf.AbstractMessageLite.Builder.addAll( 8871 9214 values, vals_); 8872 9215 8873 9216 return this; 8874 9217 } … … 8883 9226 vals_ = java.util.Collections.emptyList(); 8884 9227 bitField0_ = (bitField0_ & ~0x00000004); 8885 9228 8886 9229 return this; 8887 9230 } … … 8895 9238 * </pre> 8896 9239 */ 8897 public boolean hasInfo() { 9240 @Override 9241 public boolean hasInfo() { 8898 9242 return ((bitField0_ & 0x00000008) == 0x00000008); 8899 9243 } … … 8905 9249 * </pre> 8906 9250 */ 8907 public crosby.binary.Osmformat.Info getInfo() { 9251 @Override 9252 public crosby.binary.Osmformat.Info getInfo() { 8908 9253 return info_; 8909 9254 } … … 8975 9320 * <code>required sint64 lat = 8;</code> 8976 9321 */ 8977 public boolean hasLat() { 9322 @Override 9323 public boolean hasLat() { 8978 9324 return ((bitField0_ & 0x00000010) == 0x00000010); 8979 9325 } … … 8981 9327 * <code>required sint64 lat = 8;</code> 8982 9328 */ 8983 public long getLat() { 9329 @Override 9330 public long getLat() { 8984 9331 return lat_; 8985 9332 } … … 8990 9337 bitField0_ |= 0x00000010; 8991 9338 lat_ = value; 8992 9339 8993 9340 return this; 8994 9341 } … … 8999 9346 bitField0_ = (bitField0_ & ~0x00000010); 9000 9347 lat_ = 0L; 9001 9348 9002 9349 return this; 9003 9350 } … … 9007 9354 * <code>required sint64 lon = 9;</code> 9008 9355 */ 9009 public boolean hasLon() { 9356 @Override 9357 public boolean hasLon() { 9010 9358 return ((bitField0_ & 0x00000020) == 0x00000020); 9011 9359 } … … 9013 9361 * <code>required sint64 lon = 9;</code> 9014 9362 */ 9015 public long getLon() { 9363 @Override 9364 public long getLon() { 9016 9365 return lon_; 9017 9366 } … … 9022 9371 bitField0_ |= 0x00000020; 9023 9372 lon_ = value; 9024 9373 9025 9374 return this; 9026 9375 } … … 9031 9380 bitField0_ = (bitField0_ & ~0x00000020); 9032 9381 lon_ = 0L; 9033 9382 9034 9383 return this; 9035 9384 } … … 9186 9535 } 9187 9536 9188 public DenseNodes getDefaultInstanceForType() { 9537 @Override 9538 public DenseNodes getDefaultInstanceForType() { 9189 9539 return defaultInstance; 9190 9540 } … … 9346 9696 public static com.google.protobuf.Parser<DenseNodes> PARSER = 9347 9697 new com.google.protobuf.AbstractParser<DenseNodes>() { 9348 public DenseNodes parsePartialFrom( 9698 @Override 9699 public DenseNodes parsePartialFrom( 9349 9700 com.google.protobuf.CodedInputStream input, 9350 9701 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 9369 9720 * </pre> 9370 9721 */ 9371 public java.util.List<java.lang.Long> 9722 @Override 9723 public java.util.List<java.lang.Long> 9372 9724 getIdList() { 9373 9725 return id_; … … 9380 9732 * </pre> 9381 9733 */ 9382 public int getIdCount() { 9734 @Override 9735 public int getIdCount() { 9383 9736 return id_.size(); 9384 9737 } … … 9390 9743 * </pre> 9391 9744 */ 9392 public long getId(int index) { 9745 @Override 9746 public long getId(int index) { 9393 9747 return id_.get(index); 9394 9748 } … … 9404 9758 * </pre> 9405 9759 */ 9406 public boolean hasDenseinfo() { 9760 @Override 9761 public boolean hasDenseinfo() { 9407 9762 return ((bitField0_ & 0x00000001) == 0x00000001); 9408 9763 } … … 9414 9769 * </pre> 9415 9770 */ 9416 public crosby.binary.Osmformat.DenseInfo getDenseinfo() { 9771 @Override 9772 public crosby.binary.Osmformat.DenseInfo getDenseinfo() { 9417 9773 return denseinfo_; 9418 9774 } … … 9427 9783 * </pre> 9428 9784 */ 9429 public java.util.List<java.lang.Long> 9785 @Override 9786 public java.util.List<java.lang.Long> 9430 9787 getLatList() { 9431 9788 return lat_; … … 9438 9795 * </pre> 9439 9796 */ 9440 public int getLatCount() { 9797 @Override 9798 public int getLatCount() { 9441 9799 return lat_.size(); 9442 9800 } … … 9448 9806 * </pre> 9449 9807 */ 9450 public long getLat(int index) { 9808 @Override 9809 public long getLat(int index) { 9451 9810 return lat_.get(index); 9452 9811 } … … 9462 9821 * </pre> 9463 9822 */ 9464 public java.util.List<java.lang.Long> 9823 @Override 9824 public java.util.List<java.lang.Long> 9465 9825 getLonList() { 9466 9826 return lon_; … … 9473 9833 * </pre> 9474 9834 */ 9475 public int getLonCount() { 9835 @Override 9836 public int getLonCount() { 9476 9837 return lon_.size(); 9477 9838 } … … 9483 9844 * </pre> 9484 9845 */ 9485 public long getLon(int index) { 9846 @Override 9847 public long getLon(int index) { 9486 9848 return lon_.get(index); 9487 9849 } … … 9497 9859 * </pre> 9498 9860 */ 9499 public java.util.List<java.lang.Integer> 9861 @Override 9862 public java.util.List<java.lang.Integer> 9500 9863 getKeysValsList() { 9501 9864 return keysVals_; … … 9508 9871 * </pre> 9509 9872 */ 9510 public int getKeysValsCount() { 9873 @Override 9874 public int getKeysValsCount() { 9511 9875 return keysVals_.size(); 9512 9876 } … … 9518 9882 * </pre> 9519 9883 */ 9520 public int getKeysVals(int index) { 9884 @Override 9885 public int getKeysVals(int index) { 9521 9886 return keysVals_.get(index); 9522 9887 } … … 9531 9896 } 9532 9897 private byte memoizedIsInitialized = -1; 9533 public final boolean isInitialized() { 9898 @Override 9899 public final boolean isInitialized() { 9534 9900 byte isInitialized = memoizedIsInitialized; 9535 9901 if (isInitialized == 1) return true; … … 9540 9906 } 9541 9907 9542 public void writeTo(com.google.protobuf.CodedOutputStream output) 9908 @Override 9909 public void writeTo(com.google.protobuf.CodedOutputStream output) 9543 9910 throws java.io.IOException { 9544 9911 getSerializedSize(); … … 9578 9945 9579 9946 private int memoizedSerializedSize = -1; 9580 public int getSerializedSize() { 9947 @Override 9948 public int getSerializedSize() { 9581 9949 int size = memoizedSerializedSize; 9582 9950 if (size != -1) return size; … … 9709 10077 9710 10078 public static Builder newBuilder() { return Builder.create(); } 9711 public Builder newBuilderForType() { return newBuilder(); } 10079 @Override 10080 public Builder newBuilderForType() { return newBuilder(); } 9712 10081 public static Builder newBuilder(crosby.binary.Osmformat.DenseNodes prototype) { 9713 10082 return newBuilder().mergeFrom(prototype); 9714 10083 } 9715 public Builder toBuilder() { return newBuilder(this); } 10084 @Override 10085 public Builder toBuilder() { return newBuilder(this); } 9716 10086 9717 10087 /** … … 9735 10105 } 9736 10106 9737 public Builder clear() { 10107 @Override 10108 public Builder clear() { 9738 10109 super.clear(); 9739 10110 id_ = java.util.Collections.emptyList(); … … 9750 10121 } 9751 10122 9752 public Builder clone() { 10123 @Override 10124 public Builder clone() { 9753 10125 return create().mergeFrom(buildPartial()); 9754 10126 } 9755 10127 9756 public crosby.binary.Osmformat.DenseNodes getDefaultInstanceForType() { 10128 @Override 10129 public crosby.binary.Osmformat.DenseNodes getDefaultInstanceForType() { 9757 10130 return crosby.binary.Osmformat.DenseNodes.getDefaultInstance(); 9758 10131 } 9759 10132 9760 public crosby.binary.Osmformat.DenseNodes build() { 10133 @Override 10134 public crosby.binary.Osmformat.DenseNodes build() { 9761 10135 crosby.binary.Osmformat.DenseNodes result = buildPartial(); 9762 10136 if (!result.isInitialized()) { … … 9766 10140 } 9767 10141 9768 public crosby.binary.Osmformat.DenseNodes buildPartial() { 10142 @Override 10143 public crosby.binary.Osmformat.DenseNodes buildPartial() { 9769 10144 crosby.binary.Osmformat.DenseNodes result = new crosby.binary.Osmformat.DenseNodes(this); 9770 10145 int from_bitField0_ = bitField0_; … … 9798 10173 } 9799 10174 9800 public Builder mergeFrom(crosby.binary.Osmformat.DenseNodes other) { 10175 @Override 10176 public Builder mergeFrom(crosby.binary.Osmformat.DenseNodes other) { 9801 10177 if (other == crosby.binary.Osmformat.DenseNodes.getDefaultInstance()) return this; 9802 10178 if (!other.id_.isEmpty()) { … … 9808 10184 id_.addAll(other.id_); 9809 10185 } 9810 10186 9811 10187 } 9812 10188 if (other.hasDenseinfo()) { … … 9821 10197 lat_.addAll(other.lat_); 9822 10198 } 9823 10199 9824 10200 } 9825 10201 if (!other.lon_.isEmpty()) { … … 9831 10207 lon_.addAll(other.lon_); 9832 10208 } 9833 10209 9834 10210 } 9835 10211 if (!other.keysVals_.isEmpty()) { … … 9841 10217 keysVals_.addAll(other.keysVals_); 9842 10218 } 9843 10219 9844 10220 } 9845 10221 setUnknownFields( … … 9848 10224 } 9849 10225 9850 public final boolean isInitialized() { 10226 @Override 10227 public final boolean isInitialized() { 9851 10228 return true; 9852 10229 } 9853 10230 9854 public Builder mergeFrom( 10231 @Override 10232 public Builder mergeFrom( 9855 10233 com.google.protobuf.CodedInputStream input, 9856 10234 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 9885 10263 * </pre> 9886 10264 */ 9887 public java.util.List<java.lang.Long> 10265 @Override 10266 public java.util.List<java.lang.Long> 9888 10267 getIdList() { 9889 10268 return java.util.Collections.unmodifiableList(id_); … … 9896 10275 * </pre> 9897 10276 */ 9898 public int getIdCount() { 10277 @Override 10278 public int getIdCount() { 9899 10279 return id_.size(); 9900 10280 } … … 9906 10286 * </pre> 9907 10287 */ 9908 public long getId(int index) { 10288 @Override 10289 public long getId(int index) { 9909 10290 return id_.get(index); 9910 10291 } … … 9920 10301 ensureIdIsMutable(); 9921 10302 id_.set(index, value); 9922 10303 9923 10304 return this; 9924 10305 } … … 9933 10314 ensureIdIsMutable(); 9934 10315 id_.add(value); 9935 10316 9936 10317 return this; 9937 10318 } … … 9948 10329 com.google.protobuf.AbstractMessageLite.Builder.addAll( 9949 10330 values, id_); 9950 10331 9951 10332 return this; 9952 10333 } … … 9961 10342 id_ = java.util.Collections.emptyList(); 9962 10343 bitField0_ = (bitField0_ & ~0x00000001); 9963 10344 9964 10345 return this; 9965 10346 } … … 9973 10354 * </pre> 9974 10355 */ 9975 public boolean hasDenseinfo() { 10356 @Override 10357 public boolean hasDenseinfo() { 9976 10358 return ((bitField0_ & 0x00000002) == 0x00000002); 9977 10359 } … … 9983 10365 * </pre> 9984 10366 */ 9985 public crosby.binary.Osmformat.DenseInfo getDenseinfo() { 10367 @Override 10368 public crosby.binary.Osmformat.DenseInfo getDenseinfo() { 9986 10369 return denseinfo_; 9987 10370 } … … 10063 10446 * </pre> 10064 10447 */ 10065 public java.util.List<java.lang.Long> 10448 @Override 10449 public java.util.List<java.lang.Long> 10066 10450 getLatList() { 10067 10451 return java.util.Collections.unmodifiableList(lat_); … … 10074 10458 * </pre> 10075 10459 */ 10076 public int getLatCount() { 10460 @Override 10461 public int getLatCount() { 10077 10462 return lat_.size(); 10078 10463 } … … 10084 10469 * </pre> 10085 10470 */ 10086 public long getLat(int index) { 10471 @Override 10472 public long getLat(int index) { 10087 10473 return lat_.get(index); 10088 10474 } … … 10098 10484 ensureLatIsMutable(); 10099 10485 lat_.set(index, value); 10100 10486 10101 10487 return this; 10102 10488 } … … 10111 10497 ensureLatIsMutable(); 10112 10498 lat_.add(value); 10113 10499 10114 10500 return this; 10115 10501 } … … 10126 10512 com.google.protobuf.AbstractMessageLite.Builder.addAll( 10127 10513 values, lat_); 10128 10514 10129 10515 return this; 10130 10516 } … … 10139 10525 lat_ = java.util.Collections.emptyList(); 10140 10526 bitField0_ = (bitField0_ & ~0x00000004); 10141 10527 10142 10528 return this; 10143 10529 } … … 10157 10543 * </pre> 10158 10544 */ 10159 public java.util.List<java.lang.Long> 10545 @Override 10546 public java.util.List<java.lang.Long> 10160 10547 getLonList() { 10161 10548 return java.util.Collections.unmodifiableList(lon_); … … 10168 10555 * </pre> 10169 10556 */ 10170 public int getLonCount() { 10557 @Override 10558 public int getLonCount() { 10171 10559 return lon_.size(); 10172 10560 } … … 10178 10566 * </pre> 10179 10567 */ 10180 public long getLon(int index) { 10568 @Override 10569 public long getLon(int index) { 10181 10570 return lon_.get(index); 10182 10571 } … … 10192 10581 ensureLonIsMutable(); 10193 10582 lon_.set(index, value); 10194 10583 10195 10584 return this; 10196 10585 } … … 10205 10594 ensureLonIsMutable(); 10206 10595 lon_.add(value); 10207 10596 10208 10597 return this; 10209 10598 } … … 10220 10609 com.google.protobuf.AbstractMessageLite.Builder.addAll( 10221 10610 values, lon_); 10222 10611 10223 10612 return this; 10224 10613 } … … 10233 10622 lon_ = java.util.Collections.emptyList(); 10234 10623 bitField0_ = (bitField0_ & ~0x00000008); 10235 10624 10236 10625 return this; 10237 10626 } … … 10251 10640 * </pre> 10252 10641 */ 10253 public java.util.List<java.lang.Integer> 10642 @Override 10643 public java.util.List<java.lang.Integer> 10254 10644 getKeysValsList() { 10255 10645 return java.util.Collections.unmodifiableList(keysVals_); … … 10262 10652 * </pre> 10263 10653 */ 10264 public int getKeysValsCount() { 10654 @Override 10655 public int getKeysValsCount() { 10265 10656 return keysVals_.size(); 10266 10657 } … … 10272 10663 * </pre> 10273 10664 */ 10274 public int getKeysVals(int index) { 10665 @Override 10666 public int getKeysVals(int index) { 10275 10667 return keysVals_.get(index); 10276 10668 } … … 10286 10678 ensureKeysValsIsMutable(); 10287 10679 keysVals_.set(index, value); 10288 10680 10289 10681 return this; 10290 10682 } … … 10299 10691 ensureKeysValsIsMutable(); 10300 10692 keysVals_.add(value); 10301 10693 10302 10694 return this; 10303 10695 } … … 10314 10706 com.google.protobuf.AbstractMessageLite.Builder.addAll( 10315 10707 values, keysVals_); 10316 10708 10317 10709 return this; 10318 10710 } … … 10327 10719 keysVals_ = java.util.Collections.emptyList(); 10328 10720 bitField0_ = (bitField0_ & ~0x00000010); 10329 10721 10330 10722 return this; 10331 10723 } … … 10446 10838 } 10447 10839 10448 public Way getDefaultInstanceForType() { 10840 @Override 10841 public Way getDefaultInstanceForType() { 10449 10842 return defaultInstance; 10450 10843 } … … 10587 10980 public static com.google.protobuf.Parser<Way> PARSER = 10588 10981 new com.google.protobuf.AbstractParser<Way>() { 10589 public Way parsePartialFrom( 10982 @Override 10983 public Way parsePartialFrom( 10590 10984 com.google.protobuf.CodedInputStream input, 10591 10985 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 10606 11000 * <code>required int64 id = 1;</code> 10607 11001 */ 10608 public boolean hasId() { 11002 @Override 11003 public boolean hasId() { 10609 11004 return ((bitField0_ & 0x00000001) == 0x00000001); 10610 11005 } … … 10612 11007 * <code>required int64 id = 1;</code> 10613 11008 */ 10614 public long getId() { 11009 @Override 11010 public long getId() { 10615 11011 return id_; 10616 11012 } … … 10625 11021 * </pre> 10626 11022 */ 10627 public java.util.List<java.lang.Integer> 11023 @Override 11024 public java.util.List<java.lang.Integer> 10628 11025 getKeysList() { 10629 11026 return keys_; … … 10636 11033 * </pre> 10637 11034 */ 10638 public int getKeysCount() { 11035 @Override 11036 public int getKeysCount() { 10639 11037 return keys_.size(); 10640 11038 } … … 10646 11044 * </pre> 10647 11045 */ 10648 public int getKeys(int index) { 11046 @Override 11047 public int getKeys(int index) { 10649 11048 return keys_.get(index); 10650 11049 } … … 10656 11055 * <code>repeated uint32 vals = 3 [packed = true];</code> 10657 11056 */ 10658 public java.util.List<java.lang.Integer> 11057 @Override 11058 public java.util.List<java.lang.Integer> 10659 11059 getValsList() { 10660 11060 return vals_; … … 10663 11063 * <code>repeated uint32 vals = 3 [packed = true];</code> 10664 11064 */ 10665 public int getValsCount() { 11065 @Override 11066 public int getValsCount() { 10666 11067 return vals_.size(); 10667 11068 } … … 10669 11070 * <code>repeated uint32 vals = 3 [packed = true];</code> 10670 11071 */ 10671 public int getVals(int index) { 11072 @Override 11073 public int getVals(int index) { 10672 11074 return vals_.get(index); 10673 11075 } … … 10679 11081 * <code>optional .OSMPBF.Info info = 4;</code> 10680 11082 */ 10681 public boolean hasInfo() { 11083 @Override 11084 public boolean hasInfo() { 10682 11085 return ((bitField0_ & 0x00000002) == 0x00000002); 10683 11086 } … … 10685 11088 * <code>optional .OSMPBF.Info info = 4;</code> 10686 11089 */ 10687 public crosby.binary.Osmformat.Info getInfo() { 11090 @Override 11091 public crosby.binary.Osmformat.Info getInfo() { 10688 11092 return info_; 10689 11093 } … … 10698 11102 * </pre> 10699 11103 */ 10700 public java.util.List<java.lang.Long> 11104 @Override 11105 public java.util.List<java.lang.Long> 10701 11106 getRefsList() { 10702 11107 return refs_; … … 10709 11114 * </pre> 10710 11115 */ 10711 public int getRefsCount() { 11116 @Override 11117 public int getRefsCount() { 10712 11118 return refs_.size(); 10713 11119 } … … 10719 11125 * </pre> 10720 11126 */ 10721 public long getRefs(int index) { 11127 @Override 11128 public long getRefs(int index) { 10722 11129 return refs_.get(index); 10723 11130 } … … 10732 11139 } 10733 11140 private byte memoizedIsInitialized = -1; 10734 public final boolean isInitialized() { 11141 @Override 11142 public final boolean isInitialized() { 10735 11143 byte isInitialized = memoizedIsInitialized; 10736 11144 if (isInitialized == 1) return true; … … 10745 11153 } 10746 11154 10747 public void writeTo(com.google.protobuf.CodedOutputStream output) 11155 @Override 11156 public void writeTo(com.google.protobuf.CodedOutputStream output) 10748 11157 throws java.io.IOException { 10749 11158 getSerializedSize(); … … 10779 11188 10780 11189 private int memoizedSerializedSize = -1; 10781 public int getSerializedSize() { 11190 @Override 11191 public int getSerializedSize() { 10782 11192 int size = memoizedSerializedSize; 10783 11193 if (size != -1) return size; … … 10900 11310 10901 11311 public static Builder newBuilder() { return Builder.create(); } 10902 public Builder newBuilderForType() { return newBuilder(); } 11312 @Override 11313 public Builder newBuilderForType() { return newBuilder(); } 10903 11314 public static Builder newBuilder(crosby.binary.Osmformat.Way prototype) { 10904 11315 return newBuilder().mergeFrom(prototype); 10905 11316 } 10906 public Builder toBuilder() { return newBuilder(this); } 11317 @Override 11318 public Builder toBuilder() { return newBuilder(this); } 10907 11319 10908 11320 /** … … 10926 11338 } 10927 11339 10928 public Builder clear() { 11340 @Override 11341 public Builder clear() { 10929 11342 super.clear(); 10930 11343 id_ = 0L; … … 10941 11354 } 10942 11355 10943 public Builder clone() { 11356 @Override 11357 public Builder clone() { 10944 11358 return create().mergeFrom(buildPartial()); 10945 11359 } 10946 11360 10947 public crosby.binary.Osmformat.Way getDefaultInstanceForType() { 11361 @Override 11362 public crosby.binary.Osmformat.Way getDefaultInstanceForType() { 10948 11363 return crosby.binary.Osmformat.Way.getDefaultInstance(); 10949 11364 } 10950 11365 10951 public crosby.binary.Osmformat.Way build() { 11366 @Override 11367 public crosby.binary.Osmformat.Way build() { 10952 11368 crosby.binary.Osmformat.Way result = buildPartial(); 10953 11369 if (!result.isInitialized()) { … … 10957 11373 } 10958 11374 10959 public crosby.binary.Osmformat.Way buildPartial() { 11375 @Override 11376 public crosby.binary.Osmformat.Way buildPartial() { 10960 11377 crosby.binary.Osmformat.Way result = new crosby.binary.Osmformat.Way(this); 10961 11378 int from_bitField0_ = bitField0_; … … 10988 11405 } 10989 11406 10990 public Builder mergeFrom(crosby.binary.Osmformat.Way other) { 11407 @Override 11408 public Builder mergeFrom(crosby.binary.Osmformat.Way other) { 10991 11409 if (other == crosby.binary.Osmformat.Way.getDefaultInstance()) return this; 10992 11410 if (other.hasId()) { … … 11001 11419 keys_.addAll(other.keys_); 11002 11420 } 11003 11421 11004 11422 } 11005 11423 if (!other.vals_.isEmpty()) { … … 11011 11429 vals_.addAll(other.vals_); 11012 11430 } 11013 11431 11014 11432 } 11015 11433 if (other.hasInfo()) { … … 11024 11442 refs_.addAll(other.refs_); 11025 11443 } 11026 11444 11027 11445 } 11028 11446 setUnknownFields( … … 11031 11449 } 11032 11450 11033 public final boolean isInitialized() { 11451 @Override 11452 public final boolean isInitialized() { 11034 11453 if (!hasId()) { 11035 11454 11036 11455 return false; 11037 11456 } … … 11039 11458 } 11040 11459 11041 public Builder mergeFrom( 11460 @Override 11461 public Builder mergeFrom( 11042 11462 com.google.protobuf.CodedInputStream input, 11043 11463 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 11062 11482 * <code>required int64 id = 1;</code> 11063 11483 */ 11064 public boolean hasId() { 11484 @Override 11485 public boolean hasId() { 11065 11486 return ((bitField0_ & 0x00000001) == 0x00000001); 11066 11487 } … … 11068 11489 * <code>required int64 id = 1;</code> 11069 11490 */ 11070 public long getId() { 11491 @Override 11492 public long getId() { 11071 11493 return id_; 11072 11494 } … … 11077 11499 bitField0_ |= 0x00000001; 11078 11500 id_ = value; 11079 11501 11080 11502 return this; 11081 11503 } … … 11086 11508 bitField0_ = (bitField0_ & ~0x00000001); 11087 11509 id_ = 0L; 11088 11510 11089 11511 return this; 11090 11512 } … … 11104 11526 * </pre> 11105 11527 */ 11106 public java.util.List<java.lang.Integer> 11528 @Override 11529 public java.util.List<java.lang.Integer> 11107 11530 getKeysList() { 11108 11531 return java.util.Collections.unmodifiableList(keys_); … … 11115 11538 * </pre> 11116 11539 */ 11117 public int getKeysCount() { 11540 @Override 11541 public int getKeysCount() { 11118 11542 return keys_.size(); 11119 11543 } … … 11125 11549 * </pre> 11126 11550 */ 11127 public int getKeys(int index) { 11551 @Override 11552 public int getKeys(int index) { 11128 11553 return keys_.get(index); 11129 11554 } … … 11139 11564 ensureKeysIsMutable(); 11140 11565 keys_.set(index, value); 11141 11566 11142 11567 return this; 11143 11568 } … … 11152 11577 ensureKeysIsMutable(); 11153 11578 keys_.add(value); 11154 11579 11155 11580 return this; 11156 11581 } … … 11167 11592 com.google.protobuf.AbstractMessageLite.Builder.addAll( 11168 11593 values, keys_); 11169 11594 11170 11595 return this; 11171 11596 } … … 11180 11605 keys_ = java.util.Collections.emptyList(); 11181 11606 bitField0_ = (bitField0_ & ~0x00000002); 11182 11607 11183 11608 return this; 11184 11609 } … … 11194 11619 * <code>repeated uint32 vals = 3 [packed = true];</code> 11195 11620 */ 11196 public java.util.List<java.lang.Integer> 11621 @Override 11622 public java.util.List<java.lang.Integer> 11197 11623 getValsList() { 11198 11624 return java.util.Collections.unmodifiableList(vals_); … … 11201 11627 * <code>repeated uint32 vals = 3 [packed = true];</code> 11202 11628 */ 11203 public int getValsCount() { 11629 @Override 11630 public int getValsCount() { 11204 11631 return vals_.size(); 11205 11632 } … … 11207 11634 * <code>repeated uint32 vals = 3 [packed = true];</code> 11208 11635 */ 11209 public int getVals(int index) { 11636 @Override 11637 public int getVals(int index) { 11210 11638 return vals_.get(index); 11211 11639 } … … 11217 11645 ensureValsIsMutable(); 11218 11646 vals_.set(index, value); 11219 11647 11220 11648 return this; 11221 11649 } … … 11226 11654 ensureValsIsMutable(); 11227 11655 vals_.add(value); 11228 11656 11229 11657 return this; 11230 11658 } … … 11237 11665 com.google.protobuf.AbstractMessageLite.Builder.addAll( 11238 11666 values, vals_); 11239 11667 11240 11668 return this; 11241 11669 } … … 11246 11674 vals_ = java.util.Collections.emptyList(); 11247 11675 bitField0_ = (bitField0_ & ~0x00000004); 11248 11676 11249 11677 return this; 11250 11678 } … … 11254 11682 * <code>optional .OSMPBF.Info info = 4;</code> 11255 11683 */ 11256 public boolean hasInfo() { 11684 @Override 11685 public boolean hasInfo() { 11257 11686 return ((bitField0_ & 0x00000008) == 0x00000008); 11258 11687 } … … 11260 11689 * <code>optional .OSMPBF.Info info = 4;</code> 11261 11690 */ 11262 public crosby.binary.Osmformat.Info getInfo() { 11691 @Override 11692 public crosby.binary.Osmformat.Info getInfo() { 11263 11693 return info_; 11264 11694 } … … 11324 11754 * </pre> 11325 11755 */ 11326 public java.util.List<java.lang.Long> 11756 @Override 11757 public java.util.List<java.lang.Long> 11327 11758 getRefsList() { 11328 11759 return java.util.Collections.unmodifiableList(refs_); … … 11335 11766 * </pre> 11336 11767 */ 11337 public int getRefsCount() { 11768 @Override 11769 public int getRefsCount() { 11338 11770 return refs_.size(); 11339 11771 } … … 11345 11777 * </pre> 11346 11778 */ 11347 public long getRefs(int index) { 11779 @Override 11780 public long getRefs(int index) { 11348 11781 return refs_.get(index); 11349 11782 } … … 11359 11792 ensureRefsIsMutable(); 11360 11793 refs_.set(index, value); 11361 11794 11362 11795 return this; 11363 11796 } … … 11372 11805 ensureRefsIsMutable(); 11373 11806 refs_.add(value); 11374 11807 11375 11808 return this; 11376 11809 } … … 11387 11820 com.google.protobuf.AbstractMessageLite.Builder.addAll( 11388 11821 values, refs_); 11389 11822 11390 11823 return this; 11391 11824 } … … 11400 11833 refs_ = java.util.Collections.emptyList(); 11401 11834 bitField0_ = (bitField0_ & ~0x00000010); 11402 11835 11403 11836 return this; 11404 11837 } … … 11557 11990 } 11558 11991 11559 public Relation getDefaultInstanceForType() { 11992 @Override 11993 public Relation getDefaultInstanceForType() { 11560 11994 return defaultInstance; 11561 11995 } … … 11760 12194 public static com.google.protobuf.Parser<Relation> PARSER = 11761 12195 new com.google.protobuf.AbstractParser<Relation>() { 11762 public Relation parsePartialFrom( 12196 @Override 12197 public Relation parsePartialFrom( 11763 12198 com.google.protobuf.CodedInputStream input, 11764 12199 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 11806 12241 11807 12242 11808 public final int getNumber() { return value; } 12243 @Override 12244 public final int getNumber() { return value; } 11809 12245 11810 12246 public static MemberType valueOf(int value) { … … 11824 12260 internalValueMap = 11825 12261 new com.google.protobuf.Internal.EnumLiteMap<MemberType>() { 11826 public MemberType findValueByNumber(int number) { 12262 @Override 12263 public MemberType findValueByNumber(int number) { 11827 12264 return MemberType.valueOf(number); 11828 12265 } … … 11844 12281 * <code>required int64 id = 1;</code> 11845 12282 */ 11846 public boolean hasId() { 12283 @Override 12284 public boolean hasId() { 11847 12285 return ((bitField0_ & 0x00000001) == 0x00000001); 11848 12286 } … … 11850 12288 * <code>required int64 id = 1;</code> 11851 12289 */ 11852 public long getId() { 12290 @Override 12291 public long getId() { 11853 12292 return id_; 11854 12293 } … … 11863 12302 * </pre> 11864 12303 */ 11865 public java.util.List<java.lang.Integer> 12304 @Override 12305 public java.util.List<java.lang.Integer> 11866 12306 getKeysList() { 11867 12307 return keys_; … … 11874 12314 * </pre> 11875 12315 */ 11876 public int getKeysCount() { 12316 @Override 12317 public int getKeysCount() { 11877 12318 return keys_.size(); 11878 12319 } … … 11884 12325 * </pre> 11885 12326 */ 11886 public int getKeys(int index) { 12327 @Override 12328 public int getKeys(int index) { 11887 12329 return keys_.get(index); 11888 12330 } … … 11894 12336 * <code>repeated uint32 vals = 3 [packed = true];</code> 11895 12337 */ 11896 public java.util.List<java.lang.Integer> 12338 @Override 12339 public java.util.List<java.lang.Integer> 11897 12340 getValsList() { 11898 12341 return vals_; … … 11901 12344 * <code>repeated uint32 vals = 3 [packed = true];</code> 11902 12345 */ 11903 public int getValsCount() { 12346 @Override 12347 public int getValsCount() { 11904 12348 return vals_.size(); 11905 12349 } … … 11907 12351 * <code>repeated uint32 vals = 3 [packed = true];</code> 11908 12352 */ 11909 public int getVals(int index) { 12353 @Override 12354 public int getVals(int index) { 11910 12355 return vals_.get(index); 11911 12356 } … … 11917 12362 * <code>optional .OSMPBF.Info info = 4;</code> 11918 12363 */ 11919 public boolean hasInfo() { 12364 @Override 12365 public boolean hasInfo() { 11920 12366 return ((bitField0_ & 0x00000002) == 0x00000002); 11921 12367 } … … 11923 12369 * <code>optional .OSMPBF.Info info = 4;</code> 11924 12370 */ 11925 public crosby.binary.Osmformat.Info getInfo() { 12371 @Override 12372 public crosby.binary.Osmformat.Info getInfo() { 11926 12373 return info_; 11927 12374 } … … 11936 12383 * </pre> 11937 12384 */ 11938 public java.util.List<java.lang.Integer> 12385 @Override 12386 public java.util.List<java.lang.Integer> 11939 12387 getRolesSidList() { 11940 12388 return rolesSid_; … … 11947 12395 * </pre> 11948 12396 */ 11949 public int getRolesSidCount() { 12397 @Override 12398 public int getRolesSidCount() { 11950 12399 return rolesSid_.size(); 11951 12400 } … … 11957 12406 * </pre> 11958 12407 */ 11959 public int getRolesSid(int index) { 12408 @Override 12409 public int getRolesSid(int index) { 11960 12410 return rolesSid_.get(index); 11961 12411 } … … 11971 12421 * </pre> 11972 12422 */ 11973 public java.util.List<java.lang.Long> 12423 @Override 12424 public java.util.List<java.lang.Long> 11974 12425 getMemidsList() { 11975 12426 return memids_; … … 11982 12433 * </pre> 11983 12434 */ 11984 public int getMemidsCount() { 12435 @Override 12436 public int getMemidsCount() { 11985 12437 return memids_.size(); 11986 12438 } … … 11992 12444 * </pre> 11993 12445 */ 11994 public long getMemids(int index) { 12446 @Override 12447 public long getMemids(int index) { 11995 12448 return memids_.get(index); 11996 12449 } … … 12002 12455 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12003 12456 */ 12004 public java.util.List<crosby.binary.Osmformat.Relation.MemberType> getTypesList() { 12457 @Override 12458 public java.util.List<crosby.binary.Osmformat.Relation.MemberType> getTypesList() { 12005 12459 return types_; 12006 12460 } … … 12008 12462 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12009 12463 */ 12010 public int getTypesCount() { 12464 @Override 12465 public int getTypesCount() { 12011 12466 return types_.size(); 12012 12467 } … … 12014 12469 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12015 12470 */ 12016 public crosby.binary.Osmformat.Relation.MemberType getTypes(int index) { 12471 @Override 12472 public crosby.binary.Osmformat.Relation.MemberType getTypes(int index) { 12017 12473 return types_.get(index); 12018 12474 } … … 12029 12485 } 12030 12486 private byte memoizedIsInitialized = -1; 12031 public final boolean isInitialized() { 12487 @Override 12488 public final boolean isInitialized() { 12032 12489 byte isInitialized = memoizedIsInitialized; 12033 12490 if (isInitialized == 1) return true; … … 12042 12499 } 12043 12500 12044 public void writeTo(com.google.protobuf.CodedOutputStream output) 12501 @Override 12502 public void writeTo(com.google.protobuf.CodedOutputStream output) 12045 12503 throws java.io.IOException { 12046 12504 getSerializedSize(); … … 12090 12548 12091 12549 private int memoizedSerializedSize = -1; 12092 public int getSerializedSize() { 12550 @Override 12551 public int getSerializedSize() { 12093 12552 int size = memoizedSerializedSize; 12094 12553 if (size != -1) return size; … … 12237 12696 12238 12697 public static Builder newBuilder() { return Builder.create(); } 12239 public Builder newBuilderForType() { return newBuilder(); } 12698 @Override 12699 public Builder newBuilderForType() { return newBuilder(); } 12240 12700 public static Builder newBuilder(crosby.binary.Osmformat.Relation prototype) { 12241 12701 return newBuilder().mergeFrom(prototype); 12242 12702 } 12243 public Builder toBuilder() { return newBuilder(this); } 12703 @Override 12704 public Builder toBuilder() { return newBuilder(this); } 12244 12705 12245 12706 /** … … 12263 12724 } 12264 12725 12265 public Builder clear() { 12726 @Override 12727 public Builder clear() { 12266 12728 super.clear(); 12267 12729 id_ = 0L; … … 12282 12744 } 12283 12745 12284 public Builder clone() { 12746 @Override 12747 public Builder clone() { 12285 12748 return create().mergeFrom(buildPartial()); 12286 12749 } 12287 12750 12288 public crosby.binary.Osmformat.Relation getDefaultInstanceForType() { 12751 @Override 12752 public crosby.binary.Osmformat.Relation getDefaultInstanceForType() { 12289 12753 return crosby.binary.Osmformat.Relation.getDefaultInstance(); 12290 12754 } 12291 12755 12292 public crosby.binary.Osmformat.Relation build() { 12756 @Override 12757 public crosby.binary.Osmformat.Relation build() { 12293 12758 crosby.binary.Osmformat.Relation result = buildPartial(); 12294 12759 if (!result.isInitialized()) { … … 12298 12763 } 12299 12764 12300 public crosby.binary.Osmformat.Relation buildPartial() { 12765 @Override 12766 public crosby.binary.Osmformat.Relation buildPartial() { 12301 12767 crosby.binary.Osmformat.Relation result = new crosby.binary.Osmformat.Relation(this); 12302 12768 int from_bitField0_ = bitField0_; … … 12339 12805 } 12340 12806 12341 public Builder mergeFrom(crosby.binary.Osmformat.Relation other) { 12807 @Override 12808 public Builder mergeFrom(crosby.binary.Osmformat.Relation other) { 12342 12809 if (other == crosby.binary.Osmformat.Relation.getDefaultInstance()) return this; 12343 12810 if (other.hasId()) { … … 12352 12819 keys_.addAll(other.keys_); 12353 12820 } 12354 12821 12355 12822 } 12356 12823 if (!other.vals_.isEmpty()) { … … 12362 12829 vals_.addAll(other.vals_); 12363 12830 } 12364 12831 12365 12832 } 12366 12833 if (other.hasInfo()) { … … 12375 12842 rolesSid_.addAll(other.rolesSid_); 12376 12843 } 12377 12844 12378 12845 } 12379 12846 if (!other.memids_.isEmpty()) { … … 12385 12852 memids_.addAll(other.memids_); 12386 12853 } 12387 12854 12388 12855 } 12389 12856 if (!other.types_.isEmpty()) { … … 12395 12862 types_.addAll(other.types_); 12396 12863 } 12397 12864 12398 12865 } 12399 12866 setUnknownFields( … … 12402 12869 } 12403 12870 12404 public final boolean isInitialized() { 12871 @Override 12872 public final boolean isInitialized() { 12405 12873 if (!hasId()) { 12406 12874 12407 12875 return false; 12408 12876 } … … 12410 12878 } 12411 12879 12412 public Builder mergeFrom( 12880 @Override 12881 public Builder mergeFrom( 12413 12882 com.google.protobuf.CodedInputStream input, 12414 12883 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 12433 12902 * <code>required int64 id = 1;</code> 12434 12903 */ 12435 public boolean hasId() { 12904 @Override 12905 public boolean hasId() { 12436 12906 return ((bitField0_ & 0x00000001) == 0x00000001); 12437 12907 } … … 12439 12909 * <code>required int64 id = 1;</code> 12440 12910 */ 12441 public long getId() { 12911 @Override 12912 public long getId() { 12442 12913 return id_; 12443 12914 } … … 12448 12919 bitField0_ |= 0x00000001; 12449 12920 id_ = value; 12450 12921 12451 12922 return this; 12452 12923 } … … 12457 12928 bitField0_ = (bitField0_ & ~0x00000001); 12458 12929 id_ = 0L; 12459 12930 12460 12931 return this; 12461 12932 } … … 12475 12946 * </pre> 12476 12947 */ 12477 public java.util.List<java.lang.Integer> 12948 @Override 12949 public java.util.List<java.lang.Integer> 12478 12950 getKeysList() { 12479 12951 return java.util.Collections.unmodifiableList(keys_); … … 12486 12958 * </pre> 12487 12959 */ 12488 public int getKeysCount() { 12960 @Override 12961 public int getKeysCount() { 12489 12962 return keys_.size(); 12490 12963 } … … 12496 12969 * </pre> 12497 12970 */ 12498 public int getKeys(int index) { 12971 @Override 12972 public int getKeys(int index) { 12499 12973 return keys_.get(index); 12500 12974 } … … 12510 12984 ensureKeysIsMutable(); 12511 12985 keys_.set(index, value); 12512 12986 12513 12987 return this; 12514 12988 } … … 12523 12997 ensureKeysIsMutable(); 12524 12998 keys_.add(value); 12525 12999 12526 13000 return this; 12527 13001 } … … 12538 13012 com.google.protobuf.AbstractMessageLite.Builder.addAll( 12539 13013 values, keys_); 12540 13014 12541 13015 return this; 12542 13016 } … … 12551 13025 keys_ = java.util.Collections.emptyList(); 12552 13026 bitField0_ = (bitField0_ & ~0x00000002); 12553 13027 12554 13028 return this; 12555 13029 } … … 12565 13039 * <code>repeated uint32 vals = 3 [packed = true];</code> 12566 13040 */ 12567 public java.util.List<java.lang.Integer> 13041 @Override 13042 public java.util.List<java.lang.Integer> 12568 13043 getValsList() { 12569 13044 return java.util.Collections.unmodifiableList(vals_); … … 12572 13047 * <code>repeated uint32 vals = 3 [packed = true];</code> 12573 13048 */ 12574 public int getValsCount() { 13049 @Override 13050 public int getValsCount() { 12575 13051 return vals_.size(); 12576 13052 } … … 12578 13054 * <code>repeated uint32 vals = 3 [packed = true];</code> 12579 13055 */ 12580 public int getVals(int index) { 13056 @Override 13057 public int getVals(int index) { 12581 13058 return vals_.get(index); 12582 13059 } … … 12588 13065 ensureValsIsMutable(); 12589 13066 vals_.set(index, value); 12590 13067 12591 13068 return this; 12592 13069 } … … 12597 13074 ensureValsIsMutable(); 12598 13075 vals_.add(value); 12599 13076 12600 13077 return this; 12601 13078 } … … 12608 13085 com.google.protobuf.AbstractMessageLite.Builder.addAll( 12609 13086 values, vals_); 12610 13087 12611 13088 return this; 12612 13089 } … … 12617 13094 vals_ = java.util.Collections.emptyList(); 12618 13095 bitField0_ = (bitField0_ & ~0x00000004); 12619 13096 12620 13097 return this; 12621 13098 } … … 12625 13102 * <code>optional .OSMPBF.Info info = 4;</code> 12626 13103 */ 12627 public boolean hasInfo() { 13104 @Override 13105 public boolean hasInfo() { 12628 13106 return ((bitField0_ & 0x00000008) == 0x00000008); 12629 13107 } … … 12631 13109 * <code>optional .OSMPBF.Info info = 4;</code> 12632 13110 */ 12633 public crosby.binary.Osmformat.Info getInfo() { 13111 @Override 13112 public crosby.binary.Osmformat.Info getInfo() { 12634 13113 return info_; 12635 13114 } … … 12695 13174 * </pre> 12696 13175 */ 12697 public java.util.List<java.lang.Integer> 13176 @Override 13177 public java.util.List<java.lang.Integer> 12698 13178 getRolesSidList() { 12699 13179 return java.util.Collections.unmodifiableList(rolesSid_); … … 12706 13186 * </pre> 12707 13187 */ 12708 public int getRolesSidCount() { 13188 @Override 13189 public int getRolesSidCount() { 12709 13190 return rolesSid_.size(); 12710 13191 } … … 12716 13197 * </pre> 12717 13198 */ 12718 public int getRolesSid(int index) { 13199 @Override 13200 public int getRolesSid(int index) { 12719 13201 return rolesSid_.get(index); 12720 13202 } … … 12730 13212 ensureRolesSidIsMutable(); 12731 13213 rolesSid_.set(index, value); 12732 13214 12733 13215 return this; 12734 13216 } … … 12743 13225 ensureRolesSidIsMutable(); 12744 13226 rolesSid_.add(value); 12745 13227 12746 13228 return this; 12747 13229 } … … 12758 13240 com.google.protobuf.AbstractMessageLite.Builder.addAll( 12759 13241 values, rolesSid_); 12760 13242 12761 13243 return this; 12762 13244 } … … 12771 13253 rolesSid_ = java.util.Collections.emptyList(); 12772 13254 bitField0_ = (bitField0_ & ~0x00000010); 12773 13255 12774 13256 return this; 12775 13257 } … … 12789 13271 * </pre> 12790 13272 */ 12791 public java.util.List<java.lang.Long> 13273 @Override 13274 public java.util.List<java.lang.Long> 12792 13275 getMemidsList() { 12793 13276 return java.util.Collections.unmodifiableList(memids_); … … 12800 13283 * </pre> 12801 13284 */ 12802 public int getMemidsCount() { 13285 @Override 13286 public int getMemidsCount() { 12803 13287 return memids_.size(); 12804 13288 } … … 12810 13294 * </pre> 12811 13295 */ 12812 public long getMemids(int index) { 13296 @Override 13297 public long getMemids(int index) { 12813 13298 return memids_.get(index); 12814 13299 } … … 12824 13309 ensureMemidsIsMutable(); 12825 13310 memids_.set(index, value); 12826 13311 12827 13312 return this; 12828 13313 } … … 12837 13322 ensureMemidsIsMutable(); 12838 13323 memids_.add(value); 12839 13324 12840 13325 return this; 12841 13326 } … … 12852 13337 com.google.protobuf.AbstractMessageLite.Builder.addAll( 12853 13338 values, memids_); 12854 13339 12855 13340 return this; 12856 13341 } … … 12865 13350 memids_ = java.util.Collections.emptyList(); 12866 13351 bitField0_ = (bitField0_ & ~0x00000020); 12867 13352 12868 13353 return this; 12869 13354 } … … 12880 13365 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12881 13366 */ 12882 public java.util.List<crosby.binary.Osmformat.Relation.MemberType> getTypesList() { 13367 @Override 13368 public java.util.List<crosby.binary.Osmformat.Relation.MemberType> getTypesList() { 12883 13369 return java.util.Collections.unmodifiableList(types_); 12884 13370 } … … 12886 13372 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12887 13373 */ 12888 public int getTypesCount() { 13374 @Override 13375 public int getTypesCount() { 12889 13376 return types_.size(); 12890 13377 } … … 12892 13379 * <code>repeated .OSMPBF.Relation.MemberType types = 10 [packed = true];</code> 12893 13380 */ 12894 public crosby.binary.Osmformat.Relation.MemberType getTypes(int index) { 13381 @Override 13382 public crosby.binary.Osmformat.Relation.MemberType getTypes(int index) { 12895 13383 return types_.get(index); 12896 13384 } … … 12905 13393 ensureTypesIsMutable(); 12906 13394 types_.set(index, value); 12907 13395 12908 13396 return this; 12909 13397 } … … 12917 13405 ensureTypesIsMutable(); 12918 13406 types_.add(value); 12919 13407 12920 13408 return this; 12921 13409 } … … 12928 13416 com.google.protobuf.AbstractMessageLite.Builder.addAll( 12929 13417 values, types_); 12930 13418 12931 13419 return this; 12932 13420 } … … 12937 13425 types_ = java.util.Collections.emptyList(); 12938 13426 bitField0_ = (bitField0_ & ~0x00000040); 12939 13427 12940 13428 return this; 12941 13429 }
Note:
See TracChangeset
for help on using the changeset viewer.