Child: [r12] (diff)

Download this file

index-all.html    1384 lines (1383 with data), 0 Bytes

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Mon Oct 28 00:36:41 JST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Index (twitter4j-async 3.0.5 API)</title>
<meta name="date" content="2013-10-28">
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (twitter4j-async 3.0.5 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="./overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="./overview-tree.html">Tree</a></li>
<li><a href="./deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="./help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="./allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#_A_">A</a>&nbsp;<a href="#_C_">C</a>&nbsp;<a href="#_D_">D</a>&nbsp;<a href="#_F_">F</a>&nbsp;<a href="#_G_">G</a>&nbsp;<a href="#_H_">H</a>&nbsp;<a href="#_L_">L</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_P_">P</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a href="#_S_">S</a>&nbsp;<a href="#_T_">T</a>&nbsp;<a href="#_U_">U</a>&nbsp;<a href="#_V_">V</a>&nbsp;<a name="_A_">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitter.html#addListener(twitter4j.TwitterListener)">addListener(TwitterListener)</a></span> - Method in interface twitter4j.<a href="./twitter4j/AsyncTwitter.html" title="interface in twitter4j">AsyncTwitter</a></dt>
<dd>
<div class="block">Adds twitter listener</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMember(int, long)">addUserListMember(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMember(int, long)"><code>ListsResourcesAsync.createUserListMember(int, long)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMember(long, java.lang.String, long)">addUserListMember(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMember(long, java.lang.String, long)"><code>ListsResourcesAsync.createUserListMember(long, String, long)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMembers(int, long[])">addUserListMembers(int, long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, long[])"><code>ListsResourcesAsync.createUserListMembers(int, long[])</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMembers(long, java.lang.String, long[])">addUserListMembers(long, String, long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, long[])"><code>ListsResourcesAsync.createUserListMembers(int, long[])</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMembers(int, java.lang.String[])">addUserListMembers(int, String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, java.lang.String[])"><code>ListsResourcesAsync.createUserListMembers(int, String[])</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#addUserListMembers(long, java.lang.String, java.lang.String[])">addUserListMembers(long, String, String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, java.lang.String[])"><code>ListsResourcesAsync.createUserListMembers(int, String[])</code></a> instead</i></div>
</div>
</dd>
<dt><a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth"><span class="strong">AsyncOAuthSupport</span></a> - Interface in <a href="./twitter4j/auth/package-summary.html">twitter4j.auth</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/AsyncTwitter.html" title="interface in twitter4j"><span class="strong">AsyncTwitter</span></a> - Interface in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j"><span class="strong">AsyncTwitterFactory</span></a> - Class in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>
<div class="block">A factory class for AsyncTwitter.<br>
An instance of this class is completely thread safe and can be re-used and used concurrently.<br>
Note that currently AsyncTwitter is NOT compatible with Google App Engine as it is maintaining threads internally.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#AsyncTwitterFactory()">AsyncTwitterFactory()</a></span> - Constructor for class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Creates an AsyncTwitterFactory with the root configuration, with no listener.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#AsyncTwitterFactory(twitter4j.conf.Configuration)">AsyncTwitterFactory(Configuration)</a></span> - Constructor for class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Creates an AsyncTwitterFactory with the given configuration.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#AsyncTwitterFactory(java.lang.String)">AsyncTwitterFactory(String)</a></span> - Constructor for class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Creates a AsyncTwitterFactory with the specified config tree, with given listener</div>
</dd>
</dl>
<a name="_C_">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#checkedUserListMembership(twitter4j.User)">checkedUserListMembership(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#checkedUserListMembership(twitter4j.User)">checkedUserListMembership(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#checkedUserListSubscription(twitter4j.User)">checkedUserListSubscription(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#checkedUserListSubscription(twitter4j.User)">checkedUserListSubscription(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#createBlock(long)">createBlock(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Blocks the user specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#createBlock(java.lang.String)">createBlock(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Blocks the user specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdBlock(twitter4j.User)">createdBlock(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdBlock(twitter4j.User)">createdBlock(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdFavorite(twitter4j.Status)">createdFavorite(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdFavorite(twitter4j.Status)">createdFavorite(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdFriendship(twitter4j.User)">createdFriendship(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdFriendship(twitter4j.User)">createdFriendship(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdPlace(twitter4j.Place)">createdPlace(Place)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdPlace(twitter4j.Place)">createdPlace(Place)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdSavedSearch(twitter4j.SavedSearch)">createdSavedSearch(SavedSearch)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdSavedSearch(twitter4j.SavedSearch)">createdSavedSearch(SavedSearch)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdUserList(twitter4j.UserList)">createdUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdUserList(twitter4j.UserList)">createdUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdUserListMember(twitter4j.UserList)">createdUserListMember(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdUserListMember(twitter4j.UserList)">createdUserListMember(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#createdUserListMembers(twitter4j.UserList)">createdUserListMembers(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#createdUserListMembers(twitter4j.UserList)">createdUserListMembers(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#createFavorite(long)">createFavorite(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Favorites the status specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#createFriendship(long)">createFriendship(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to follow the user specified in the ID parameter.<br>
Returns the befriended user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#createFriendship(java.lang.String)">createFriendship(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to follow the user specified in the ID parameter.<br>
Returns the befriended user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#createFriendship(long, boolean)">createFriendship(long, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to follow the user specified in the ID parameter.<br>
Returns the befriended user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#createFriendship(java.lang.String, boolean)">createFriendship(String, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to follow the user specified in the ID parameter.<br>
Returns the befriended user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/PlacesGeoResourcesAsync.html#createPlace(java.lang.String, java.lang.String, java.lang.String, twitter4j.GeoLocation, java.lang.String)">createPlace(String, String, String, GeoLocation, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api">PlacesGeoResourcesAsync</a></dt>
<dd>
<div class="block">Creates a new place at the given latitude and longitude.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SavedSearchesResourcesAsync.html#createSavedSearch(java.lang.String)">createSavedSearch(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SavedSearchesResourcesAsync.html" title="interface in twitter4j.api">SavedSearchesResourcesAsync</a></dt>
<dd>
<div class="block">Creates a saved search for the authenticated user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserList(java.lang.String, boolean, java.lang.String)">createUserList(String, boolean, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Creates a new list for the authenticated user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMember(int, long)">createUserListMember(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds a member to a list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMember(long, java.lang.String, long)">createUserListMember(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds a member to a list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, long[])">createUserListMembers(int, long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(long, java.lang.String, long[])">createUserListMembers(long, String, long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(int, java.lang.String[])">createUserListMembers(int, String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListMembers(long, java.lang.String, java.lang.String[])">createUserListMembers(long, String, String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListSubscription(int)">createUserListSubscription(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Make the authenticated user follow the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#createUserListSubscription(long, java.lang.String)">createUserListSubscription(long, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Make the authenticated user follow the specified list.</div>
</dd>
</dl>
<a name="_D_">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#deleteUserListMember(int, long)">deleteUserListMember(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListMember(int, long)"><code>ListsResourcesAsync.destroyUserListMember(int, long)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#deleteUserListMember(long, java.lang.String, long)">deleteUserListMember(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListMember(int, long)"><code>ListsResourcesAsync.destroyUserListMember(int, long)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#destroyBlock(long)">destroyBlock(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Un-blocks the user specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#destroyBlock(java.lang.String)">destroyBlock(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Un-blocks the user specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#destroyDirectMessage(long)">destroyDirectMessage(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Destroys the direct message specified in the required ID parameter.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedBlock(twitter4j.User)">destroyedBlock(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedBlock(twitter4j.User)">destroyedBlock(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedDirectMessage(twitter4j.DirectMessage)">destroyedDirectMessage(DirectMessage)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedDirectMessage(twitter4j.DirectMessage)">destroyedDirectMessage(DirectMessage)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedFavorite(twitter4j.Status)">destroyedFavorite(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedFavorite(twitter4j.Status)">destroyedFavorite(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedFriendship(twitter4j.User)">destroyedFriendship(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedFriendship(twitter4j.User)">destroyedFriendship(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedSavedSearch(twitter4j.SavedSearch)">destroyedSavedSearch(SavedSearch)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedSavedSearch(twitter4j.SavedSearch)">destroyedSavedSearch(SavedSearch)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedStatus(twitter4j.Status)">destroyedStatus(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedStatus(twitter4j.Status)">destroyedStatus(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedUserList(twitter4j.UserList)">destroyedUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedUserList(twitter4j.UserList)">destroyedUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#destroyedUserListMember(twitter4j.UserList)">destroyedUserListMember(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#destroyedUserListMember(twitter4j.UserList)">destroyedUserListMember(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#destroyFavorite(long)">destroyFavorite(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Favorites the status specified in the ID parameter as the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#destroyFriendship(long)">destroyFriendship(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to unfollow the user specified in the ID parameter.<br>
Returns the unfollowed user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#destroyFriendship(java.lang.String)">destroyFriendship(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows the authenticating users to unfollow the user specified in the ID parameter.<br>
Returns the unfollowed user in the requested format when successful.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SavedSearchesResourcesAsync.html#destroySavedSearch(int)">destroySavedSearch(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SavedSearchesResourcesAsync.html" title="interface in twitter4j.api">SavedSearchesResourcesAsync</a></dt>
<dd>
<div class="block">Destroys a saved search for the authenticated user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#destroyStatus(long)">destroyStatus(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Destroys the status specified by the required ID parameter.<br>
Usage note: The authenticating user must be the author of the specified status.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserList(int)">destroyUserList(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Deletes the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserList(long, java.lang.String)">destroyUserList(long, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Deletes the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListMember(int, long)">destroyUserListMember(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Removes the specified member from the list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListMember(long, java.lang.String, long)">destroyUserListMember(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Removes the specified member from the list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListSubscription(int)">destroyUserListSubscription(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Unsubscribes the authenticated user form the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#destroyUserListSubscription(long, java.lang.String)">destroyUserListSubscription(long, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Unsubscribes the authenticated user form the specified list.</div>
</dd>
<dt><a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">DirectMessagesResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_F_">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">FavoritesResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">FriendsFollowersResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_G_">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getAccountSettings()">getAccountSettings()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns the current trend, geo and sleep time information for the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getAPIConfiguration()">getAPIConfiguration()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns the current configuration used by Twitter including twitter.com slugs which are not usernames, maximum photo resolutions, and t.co URL lengths.</br>
It is recommended applications request this endpoint when they are loaded, but no more than once a day.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TrendsResourcesAsync.html#getAvailableTrends()">getAvailableTrends()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api">TrendsResourcesAsync</a></dt>
<dd>
<div class="block">Retrieves the locations that Twitter has trending topic information for.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TrendsResourcesAsync.html#getAvailableTrends(twitter4j.GeoLocation)">getAvailableTrends(GeoLocation)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api">TrendsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/TrendsResourcesAsync.html#getClosestTrends(twitter4j.GeoLocation)"><code>TrendsResourcesAsync.getClosestTrends(twitter4j.GeoLocation)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getBlocksIDs()">getBlocksIDs()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric user ids the authenticating user is blocking.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getBlocksIDs(long)">getBlocksIDs(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric user ids the authenticating user is blocking.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getBlocksList()">getBlocksList()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of user objects that the authenticating user is blocking.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getBlocksList(long)">getBlocksList(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of user objects that the authenticating user is blocking.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TrendsResourcesAsync.html#getClosestTrends(twitter4j.GeoLocation)">getClosestTrends(GeoLocation)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api">TrendsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the locations that Twitter has trending topic information for, closest to a specified location.<br>
The response is an array of "locations" that encode the location's WOEID and some other human-readable information such as a canonical name and country the location belongs in.<br>
A WOEID is a <a href="http://developer.yahoo.com/geo/geoplanet/">Yahoo! Where On Earth ID</a>.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getContributees(long)">getContributees(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of users that the specified user can contribute to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getContributees(java.lang.String)">getContributees(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of users that the specified user can contribute to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getContributors(long)">getContributors(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of users who can contribute to the specified account.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#getContributors(java.lang.String)">getContributors(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of users who can contribute to the specified account.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#getDirectMessages()">getDirectMessages()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of the direct messages sent to the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#getDirectMessages(twitter4j.Paging)">getDirectMessages(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of the direct messages sent to the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites()">getFavorites()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites(long)">getFavorites(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites(java.lang.String)">getFavorites(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites(twitter4j.Paging)">getFavorites(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites(long, twitter4j.Paging)">getFavorites(long, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FavoritesResourcesAsync.html#getFavorites(java.lang.String, twitter4j.Paging)">getFavorites(String, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FavoritesResourcesAsync.html" title="interface in twitter4j.api">FavoritesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFollowersIDs(long)">getFollowersIDs(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the specified user is followed by.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFollowersIDs(long, long)">getFollowersIDs(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the specified user is followed by.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFollowersIDs(java.lang.String, long)">getFollowersIDs(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the specified user is followed by.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFollowersList(long, long)">getFollowersList(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a cursored collection of user objects for users following the specified user.<br>
At this time, results are ordered with the most recent following first ��� however, this ordering is subject to unannounced change and eventual consistency issues.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFollowersList(java.lang.String, long)">getFollowersList(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a cursored collection of user objects for users following the specified user.<br>
At this time, results are ordered with the most recent following first ��� however, this ordering is subject to unannounced change and eventual consistency issues.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFriendsIDs(long)">getFriendsIDs(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the authenticating user is following.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFriendsIDs(long, long)">getFriendsIDs(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the specified user is following.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFriendsIDs(java.lang.String, long)">getFriendsIDs(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user the specified user is following.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFriendsList(long, long)">getFriendsList(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").<br>
At this time, results are ordered with the most recent following first ��� however, this ordering is subject to unannounced change and eventual consistency issues.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getFriendsList(java.lang.String, long)">getFriendsList(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").<br>
At this time, results are ordered with the most recent following first ��� however, this ordering is subject to unannounced change and eventual consistency issues.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/PlacesGeoResourcesAsync.html#getGeoDetails(java.lang.String)">getGeoDetails(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api">PlacesGeoResourcesAsync</a></dt>
<dd>
<div class="block">Find out more details of a place that was returned from the <a href="./twitter4j/api/PlacesGeoResourcesAsync.html#reverseGeoCode(twitter4j.GeoQuery)"><code>PlacesGeoResourcesAsync.reverseGeoCode(twitter4j.GeoQuery)</code></a> method.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getHomeTimeline()">getHomeTimeline()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getHomeTimeline(twitter4j.Paging)">getHomeTimeline(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getIncomingFriendships(long)">getIncomingFriendships(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#getInstance()">getInstance()</a></span> - Method in class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Returns an instance associated with the configuration bound to this factory.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#getInstance(twitter4j.auth.AccessToken)">getInstance(AccessToken)</a></span> - Method in class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Returns a OAuth Authenticated instance.<br>
consumer key and consumer Secret must be provided by twitter4j.properties, or system properties.<br>
Unlike <a href="http://twitter4j.org/apidocs/twitter4j/auth/OAuthSupport.html?is-external=true#setOAuthAccessToken(twitter4j.auth.AccessToken)" title="class or interface in twitter4j.auth"><code>OAuthSupport.setOAuthAccessToken(twitter4j.auth.AccessToken)</code></a>, this factory method potentially returns a cached instance.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#getInstance(twitter4j.auth.Authorization)">getInstance(Authorization)</a></span> - Method in class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#getInstance(twitter4j.Twitter)">getInstance(Twitter)</a></span> - Method in class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">a kind of copy factory method constructs an AsyncTwitter from Twitter instance</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getLanguages()">getLanguages()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns the list of languages supported by Twitter along with their ISO 639-1 code.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TrendsResourcesAsync.html#getLocationTrends(int)">getLocationTrends(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api">TrendsResourcesAsync</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./twitter4j/api/TrendsResourcesAsync.html#getPlaceTrends(int)"><code>TrendsResourcesAsync.getPlaceTrends(int)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SuggestedUsersResourcesAsync.html#getMemberSuggestions(java.lang.String)">getMemberSuggestions(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SuggestedUsersResourcesAsync.html" title="interface in twitter4j.api">SuggestedUsersResourcesAsync</a></dt>
<dd>
<div class="block">Access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getMentions()">getMentions()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent replies (status updates prefixed with @username) to the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getMentions(twitter4j.Paging)">getMentions(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent replies (status updates prefixed with @username) to the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthAccessTokenAsync()">getOAuthAccessTokenAsync()</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Returns an access token associated with this instance.<br>
If no access token is associated with this instance, this will retrieve a new access token.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthAccessTokenAsync(java.lang.String)">getOAuthAccessTokenAsync(String)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves an access token.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthAccessTokenAsync(twitter4j.auth.RequestToken)">getOAuthAccessTokenAsync(RequestToken)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves an access token associated with the supplied request token and sets userId.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthAccessTokenAsync(twitter4j.auth.RequestToken, java.lang.String)">getOAuthAccessTokenAsync(RequestToken, String)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves an access token associated with the supplied request token and sets userId.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthAccessTokenAsync(java.lang.String, java.lang.String)">getOAuthAccessTokenAsync(String, String)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves an access token associated with the supplied screen name and password using xAuth.<br>
In order to get access acquire AccessToken using xAuth, you must apply by sending an email to api@twitter.com ��� all other applications will receive an HTTP 401 error.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthRequestTokenAsync()">getOAuthRequestTokenAsync()</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves a request token</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthRequestTokenAsync(java.lang.String)">getOAuthRequestTokenAsync(String)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves a request token</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/auth/AsyncOAuthSupport.html#getOAuthRequestTokenAsync(java.lang.String, java.lang.String)">getOAuthRequestTokenAsync(String, String)</a></span> - Method in interface twitter4j.auth.<a href="./twitter4j/auth/AsyncOAuthSupport.html" title="interface in twitter4j.auth">AsyncOAuthSupport</a></dt>
<dd>
<div class="block">Retrieves a request token</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#getOEmbed(twitter4j.OEmbedRequest)">getOEmbed(OEmbedRequest)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Returns information allowing the creation of an embedded representation of a Tweet on third party sites.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#getOutgoingFriendships(long)">getOutgoingFriendships(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an array of numeric IDs for every protected user for whom the authenticating user has a pending follow request.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TrendsResourcesAsync.html#getPlaceTrends(int)">getPlaceTrends(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api">TrendsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the top 10 trending topics for a specific WOEID, if trending information is available for it.<br>
The response is an array of "trend" objects that encode the name of the trending topic, the query parameter that can be used to search for the topic on <a href="http://search.twitter.com/">Twitter Search</a>, and the Twitter Search URL.<br>
This information is cached for 5 minutes.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getPrivacyPolicy()">getPrivacyPolicy()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns Twitter's Privacy Policy.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getRateLimitStatus()">getRateLimitStatus()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns the current rate limits for methods belonging to the specified resource families.<br>
Each 1.1 API resource belongs to a "resource family" which is indicated in its method documentation.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getRateLimitStatus(java.lang.String...)">getRateLimitStatus(String...)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns the current rate limits for methods belonging to the specified resource families.<br>
Each 1.1 API resource belongs to a "resource family" which is indicated in its method documentation.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#getRetweets(long)">getRetweets(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Returns up to 100 of the first retweets of a given tweet.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getRetweetsOfMe()">getRetweetsOfMe()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getRetweetsOfMe(twitter4j.Paging)">getRetweetsOfMe(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SavedSearchesResourcesAsync.html#getSavedSearches()">getSavedSearches()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SavedSearchesResourcesAsync.html" title="interface in twitter4j.api">SavedSearchesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the authenticated user's saved search queries.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#getSentDirectMessages()">getSentDirectMessages()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of the direct messages sent by the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#getSentDirectMessages(twitter4j.Paging)">getSentDirectMessages(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Returns a list of the direct messages sent by the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/PlacesGeoResourcesAsync.html#getSimilarPlaces(twitter4j.GeoLocation, java.lang.String, java.lang.String, java.lang.String)">getSimilarPlaces(GeoLocation, String, String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api">PlacesGeoResourcesAsync</a></dt>
<dd>
<div class="block">Locates places near the given coordinates which are similar in name.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/AsyncTwitterFactory.html#getSingleton()">getSingleton()</a></span> - Static method in class twitter4j.<a href="./twitter4j/AsyncTwitterFactory.html" title="class in twitter4j">AsyncTwitterFactory</a></dt>
<dd>
<div class="block">Returns default singleton AsyncTwitter instance.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SuggestedUsersResourcesAsync.html#getSuggestedUserCategories()">getSuggestedUserCategories()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SuggestedUsersResourcesAsync.html" title="interface in twitter4j.api">SuggestedUsersResourcesAsync</a></dt>
<dd>
<div class="block">Access to Twitter's suggested user list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/HelpResourcesAsync.html#getTermsOfService()">getTermsOfService()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api">HelpResourcesAsync</a></dt>
<dd>
<div class="block">Returns Twitter's' Terms of Service.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMembers(int, long)">getUserListMembers(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the members of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMembers(long, java.lang.String, long)">getUserListMembers(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the members of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMemberships(long)">getUserListMemberships(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the authenticating user has been added to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMemberships(long, long)">getUserListMemberships(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the specified user has been added to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMemberships(java.lang.String, long)">getUserListMemberships(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the specified user has been added to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMemberships(long, long, boolean)">getUserListMemberships(long, long, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the specified user has been added to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListMemberships(java.lang.String, long, boolean)">getUserListMemberships(String, long, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the specified user has been added to.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserLists(java.lang.String)">getUserLists(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists of the specified user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserLists(long)">getUserLists(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists of the specified user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListStatuses(int, twitter4j.Paging)">getUserListStatuses(int, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Show tweet timeline for members of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListStatuses(long, java.lang.String, twitter4j.Paging)">getUserListStatuses(long, String, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Show tweet timeline for members of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListSubscribers(int, long)">getUserListSubscribers(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the subscribers of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListSubscribers(long, java.lang.String, long)">getUserListSubscribers(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Returns the subscribers of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#getUserListSubscriptions(java.lang.String, long)">getUserListSubscriptions(String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">List the lists the specified user follows.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SuggestedUsersResourcesAsync.html#getUserSuggestions(java.lang.String)">getUserSuggestions(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SuggestedUsersResourcesAsync.html" title="interface in twitter4j.api">SuggestedUsersResourcesAsync</a></dt>
<dd>
<div class="block">Access the users in a given category of the Twitter suggested user list.<br>
It is recommended that end clients cache this data for no more than one hour.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline(java.lang.String, twitter4j.Paging)">getUserTimeline(String, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline(long, twitter4j.Paging)">getUserTimeline(long, Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline(twitter4j.Paging)">getUserTimeline(Paging)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline(java.lang.String)">getUserTimeline(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline(long)">getUserTimeline(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TimelinesResourcesAsync.html#getUserTimeline()">getUserTimeline()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api">TimelinesResourcesAsync</a></dt>
<dd>
<div class="block">Returns the 20 most recent statuses posted from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/VersionAsync.html#getVersion()">getVersion()</a></span> - Static method in class twitter4j.<a href="./twitter4j/VersionAsync.html" title="class in twitter4j">VersionAsync</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotAccountSettings(twitter4j.AccountSettings)">gotAccountSettings(AccountSettings)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotAccountSettings(twitter4j.AccountSettings)">gotAccountSettings(AccountSettings)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotAPIConfiguration(twitter4j.TwitterAPIConfiguration)">gotAPIConfiguration(TwitterAPIConfiguration)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotAPIConfiguration(twitter4j.TwitterAPIConfiguration)">gotAPIConfiguration(TwitterAPIConfiguration)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotAvailableTrends(twitter4j.ResponseList)">gotAvailableTrends(ResponseList&lt;Location&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotAvailableTrends(twitter4j.ResponseList)">gotAvailableTrends(ResponseList&lt;Location&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotBlockIDs(twitter4j.IDs)">gotBlockIDs(IDs)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotBlockIDs(twitter4j.IDs)">gotBlockIDs(IDs)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotBlocksList(twitter4j.ResponseList)">gotBlocksList(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotBlocksList(twitter4j.ResponseList)">gotBlocksList(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotClosestTrends(twitter4j.ResponseList)">gotClosestTrends(ResponseList&lt;Location&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotClosestTrends(twitter4j.ResponseList)">gotClosestTrends(ResponseList&lt;Location&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotContributees(twitter4j.ResponseList)">gotContributees(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotContributees(twitter4j.ResponseList)">gotContributees(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotContributors(twitter4j.ResponseList)">gotContributors(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotContributors(twitter4j.ResponseList)">gotContributors(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotDirectMessage(twitter4j.DirectMessage)">gotDirectMessage(DirectMessage)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotDirectMessage(twitter4j.DirectMessage)">gotDirectMessage(DirectMessage)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotDirectMessages(twitter4j.ResponseList)">gotDirectMessages(ResponseList&lt;DirectMessage&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotDirectMessages(twitter4j.ResponseList)">gotDirectMessages(ResponseList&lt;DirectMessage&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotFavorites(twitter4j.ResponseList)">gotFavorites(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotFavorites(twitter4j.ResponseList)">gotFavorites(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotFollowersIDs(twitter4j.IDs)">gotFollowersIDs(IDs)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotFollowersIDs(twitter4j.IDs)">gotFollowersIDs(IDs)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotFollowersList(twitter4j.PagableResponseList)">gotFollowersList(PagableResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotFollowersList(twitter4j.PagableResponseList)">gotFollowersList(PagableResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotFriendsIDs(twitter4j.IDs)">gotFriendsIDs(IDs)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotFriendsIDs(twitter4j.IDs)">gotFriendsIDs(IDs)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotFriendsList(twitter4j.PagableResponseList)">gotFriendsList(PagableResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotFriendsList(twitter4j.PagableResponseList)">gotFriendsList(PagableResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotGeoDetails(twitter4j.Place)">gotGeoDetails(Place)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotGeoDetails(twitter4j.Place)">gotGeoDetails(Place)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotHomeTimeline(twitter4j.ResponseList)">gotHomeTimeline(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotHomeTimeline(twitter4j.ResponseList)">gotHomeTimeline(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotIncomingFriendships(twitter4j.IDs)">gotIncomingFriendships(IDs)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotIncomingFriendships(twitter4j.IDs)">gotIncomingFriendships(IDs)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotLanguages(twitter4j.ResponseList)">gotLanguages(ResponseList&lt;HelpResources.Language&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotLanguages(twitter4j.ResponseList)">gotLanguages(ResponseList&lt;HelpResources.Language&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotMemberSuggestions(twitter4j.ResponseList)">gotMemberSuggestions(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotMemberSuggestions(twitter4j.ResponseList)">gotMemberSuggestions(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotMentions(twitter4j.ResponseList)">gotMentions(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotMentions(twitter4j.ResponseList)">gotMentions(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotOAuthAccessToken(twitter4j.auth.AccessToken)">gotOAuthAccessToken(AccessToken)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotOAuthAccessToken(twitter4j.auth.AccessToken)">gotOAuthAccessToken(AccessToken)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotOAuthRequestToken(twitter4j.auth.RequestToken)">gotOAuthRequestToken(RequestToken)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotOAuthRequestToken(twitter4j.auth.RequestToken)">gotOAuthRequestToken(RequestToken)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotOEmbed(twitter4j.OEmbed)">gotOEmbed(OEmbed)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotOEmbed(twitter4j.OEmbed)">gotOEmbed(OEmbed)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotOutgoingFriendships(twitter4j.IDs)">gotOutgoingFriendships(IDs)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotOutgoingFriendships(twitter4j.IDs)">gotOutgoingFriendships(IDs)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotPlaceTrends(twitter4j.Trends)">gotPlaceTrends(Trends)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotPlaceTrends(twitter4j.Trends)">gotPlaceTrends(Trends)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotPrivacyPolicy(java.lang.String)">gotPrivacyPolicy(String)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotPrivacyPolicy(java.lang.String)">gotPrivacyPolicy(String)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotRateLimitStatus(java.util.Map)">gotRateLimitStatus(Map&lt;String, RateLimitStatus&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotRateLimitStatus(java.util.Map)">gotRateLimitStatus(Map&lt;String, RateLimitStatus&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotRetweets(twitter4j.ResponseList)">gotRetweets(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotRetweets(twitter4j.ResponseList)">gotRetweets(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotRetweetsOfMe(twitter4j.ResponseList)">gotRetweetsOfMe(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotRetweetsOfMe(twitter4j.ResponseList)">gotRetweetsOfMe(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotReverseGeoCode(twitter4j.ResponseList)">gotReverseGeoCode(ResponseList&lt;Place&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotReverseGeoCode(twitter4j.ResponseList)">gotReverseGeoCode(ResponseList&lt;Place&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotSavedSearch(twitter4j.SavedSearch)">gotSavedSearch(SavedSearch)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotSavedSearch(twitter4j.SavedSearch)">gotSavedSearch(SavedSearch)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotSavedSearches(twitter4j.ResponseList)">gotSavedSearches(ResponseList&lt;SavedSearch&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotSavedSearches(twitter4j.ResponseList)">gotSavedSearches(ResponseList&lt;SavedSearch&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotSentDirectMessages(twitter4j.ResponseList)">gotSentDirectMessages(ResponseList&lt;DirectMessage&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotSentDirectMessages(twitter4j.ResponseList)">gotSentDirectMessages(ResponseList&lt;DirectMessage&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotShowFriendship(twitter4j.Relationship)">gotShowFriendship(Relationship)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotShowFriendship(twitter4j.Relationship)">gotShowFriendship(Relationship)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotShowStatus(twitter4j.Status)">gotShowStatus(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotShowStatus(twitter4j.Status)">gotShowStatus(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotShowUserList(twitter4j.UserList)">gotShowUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotShowUserList(twitter4j.UserList)">gotShowUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotSimilarPlaces(twitter4j.SimilarPlaces)">gotSimilarPlaces(SimilarPlaces)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotSimilarPlaces(twitter4j.SimilarPlaces)">gotSimilarPlaces(SimilarPlaces)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotSuggestedUserCategories(twitter4j.ResponseList)">gotSuggestedUserCategories(ResponseList&lt;Category&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotSuggestedUserCategories(twitter4j.ResponseList)">gotSuggestedUserCategories(ResponseList&lt;Category&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotTermsOfService(java.lang.String)">gotTermsOfService(String)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotTermsOfService(java.lang.String)">gotTermsOfService(String)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserDetail(twitter4j.User)">gotUserDetail(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserDetail(twitter4j.User)">gotUserDetail(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserListMembers(twitter4j.PagableResponseList)">gotUserListMembers(PagableResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserListMembers(twitter4j.PagableResponseList)">gotUserListMembers(PagableResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserListMemberships(twitter4j.PagableResponseList)">gotUserListMemberships(PagableResponseList&lt;UserList&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserListMemberships(twitter4j.PagableResponseList)">gotUserListMemberships(PagableResponseList&lt;UserList&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserLists(twitter4j.ResponseList)">gotUserLists(ResponseList&lt;UserList&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserLists(twitter4j.ResponseList)">gotUserLists(ResponseList&lt;UserList&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserListStatuses(twitter4j.ResponseList)">gotUserListStatuses(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserListStatuses(twitter4j.ResponseList)">gotUserListStatuses(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserListSubscribers(twitter4j.PagableResponseList)">gotUserListSubscribers(PagableResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserListSubscribers(twitter4j.PagableResponseList)">gotUserListSubscribers(PagableResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserListSubscriptions(twitter4j.PagableResponseList)">gotUserListSubscriptions(PagableResponseList&lt;UserList&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserListSubscriptions(twitter4j.PagableResponseList)">gotUserListSubscriptions(PagableResponseList&lt;UserList&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserSuggestions(twitter4j.ResponseList)">gotUserSuggestions(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserSuggestions(twitter4j.ResponseList)">gotUserSuggestions(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#gotUserTimeline(twitter4j.ResponseList)">gotUserTimeline(ResponseList&lt;Status&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#gotUserTimeline(twitter4j.ResponseList)">gotUserTimeline(ResponseList&lt;Status&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_H_">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><a href="./twitter4j/api/HelpResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">HelpResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_L_">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">ListsResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#lookedUpFriendships(twitter4j.ResponseList)">lookedUpFriendships(ResponseList&lt;Friendship&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#lookedUpFriendships(twitter4j.ResponseList)">lookedUpFriendships(ResponseList&lt;Friendship&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#lookedupUsers(twitter4j.ResponseList)">lookedupUsers(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#lookedupUsers(twitter4j.ResponseList)">lookedupUsers(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#lookupFriendships(long[])">lookupFriendships(long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns the relationship of the authenticating user to the specified users.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#lookupFriendships(java.lang.String[])">lookupFriendships(String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns the relationship of the authenticating user to the specified users.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#lookupUsers(long[])">lookupUsers(long[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Return up to 100 users worth of extended information, specified by either ID, screen name, or combination of the two.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#lookupUsers(java.lang.String[])">lookupUsers(String[])</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Return up to 100 users worth of extended information, specified by either ID, screen name, or combination of the two.</div>
</dd>
</dl>
<a name="_M_">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/VersionAsync.html#main(java.lang.String[])">main(String[])</a></span> - Static method in class twitter4j.<a href="./twitter4j/VersionAsync.html" title="class in twitter4j">VersionAsync</a></dt>
<dd>
<div class="block">prints the version string</div>
</dd>
</dl>
<a name="_O_">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#onException(twitter4j.TwitterException, twitter4j.TwitterMethod)">onException(TwitterException, TwitterMethod)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#onException(twitter4j.TwitterException, twitter4j.TwitterMethod)">onException(TwitterException, TwitterMethod)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_P_">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">PlacesGeoResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_R_">
<!-- -->
</a>
<h2 class="title">R</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#removedProfileBanner()">removedProfileBanner()</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#removedProfileBanner()">removedProfileBanner()</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#removeProfileBanner()">removeProfileBanner()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Removes the uploaded profile banner for the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#reportedSpam(twitter4j.User)">reportedSpam(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#reportedSpam(twitter4j.User)">reportedSpam(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/SpamReportingResourceAsync.html#reportSpam(long)">reportSpam(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SpamReportingResourceAsync.html" title="interface in twitter4j.api">SpamReportingResourceAsync</a></dt>
<dd>
<div class="block">The user specified in the id is blocked by the authenticated user and reported as a spammer.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SpamReportingResourceAsync.html#reportSpam(java.lang.String)">reportSpam(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SpamReportingResourceAsync.html" title="interface in twitter4j.api">SpamReportingResourceAsync</a></dt>
<dd>
<div class="block">The user specified in the id is blocked by the authenticated user and reported as a spammer.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#retweetedStatus(twitter4j.Status)">retweetedStatus(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#retweetedStatus(twitter4j.Status)">retweetedStatus(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#retweetStatus(long)">retweetStatus(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Retweets a tweet.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/PlacesGeoResourcesAsync.html#reverseGeoCode(twitter4j.GeoQuery)">reverseGeoCode(GeoQuery)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api">PlacesGeoResourcesAsync</a></dt>
<dd>
<div class="block">Search for places (cities and neighborhoods) that can be attached to a statuses/update.</div>
</dd>
</dl>
<a name="_S_">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><a href="./twitter4j/api/SavedSearchesResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">SavedSearchesResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/SearchResourceAsync.html#search(twitter4j.Query)">search(Query)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SearchResourceAsync.html" title="interface in twitter4j.api">SearchResourceAsync</a></dt>
<dd>
<div class="block">Returns tweets that match a specified query.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#searched(twitter4j.QueryResult)">searched(QueryResult)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#searched(twitter4j.QueryResult)">searched(QueryResult)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#searchedPlaces(twitter4j.ResponseList)">searchedPlaces(ResponseList&lt;Place&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#searchedPlaces(twitter4j.ResponseList)">searchedPlaces(ResponseList&lt;Place&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#searchedUser(twitter4j.ResponseList)">searchedUser(ResponseList&lt;User&gt;)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#searchedUser(twitter4j.ResponseList)">searchedUser(ResponseList&lt;User&gt;)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/PlacesGeoResourcesAsync.html#searchPlaces(twitter4j.GeoQuery)">searchPlaces(GeoQuery)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/PlacesGeoResourcesAsync.html" title="interface in twitter4j.api">PlacesGeoResourcesAsync</a></dt>
<dd>
<div class="block">Search for places that can be attached to a statuses/update.</div>
</dd>
<dt><a href="./twitter4j/api/SearchResourceAsync.html" title="interface in twitter4j.api"><span class="strong">SearchResourceAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#searchUsers(java.lang.String, int)">searchUsers(String, int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Run a search for users similar to the Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API.<br>
Usage note: It is only possible to retrieve the first 1000 matches from this API.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#sendDirectMessage(long, java.lang.String)">sendDirectMessage(long, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Sends a new direct message to the specified user from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#sendDirectMessage(java.lang.String, java.lang.String)">sendDirectMessage(String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Sends a new direct message to the specified user from the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#sentDirectMessage(twitter4j.DirectMessage)">sentDirectMessage(DirectMessage)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#sentDirectMessage(twitter4j.DirectMessage)">sentDirectMessage(DirectMessage)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/DirectMessagesResourcesAsync.html#showDirectMessage(long)">showDirectMessage(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/DirectMessagesResourcesAsync.html" title="interface in twitter4j.api">DirectMessagesResourcesAsync</a></dt>
<dd>
<div class="block">Returns a single direct message, specified by an id parameter.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#showFriendship(long, long)">showFriendship(long, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns detailed information about the relationship between two users.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#showFriendship(java.lang.String, java.lang.String)">showFriendship(String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Returns detailed information about the relationship between two users.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/SavedSearchesResourcesAsync.html#showSavedSearch(int)">showSavedSearch(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/SavedSearchesResourcesAsync.html" title="interface in twitter4j.api">SavedSearchesResourcesAsync</a></dt>
<dd>
<div class="block">Retrieve the data for a saved search owned by the authenticating user specified by the given id.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#showStatus(long)">showStatus(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Returns a single status, specified by the id parameter below.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#showUser(long)">showUser(long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns extended information of a given user, specified by ID or screen name as per the required id parameter.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#showUser(java.lang.String)">showUser(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns extended information of a given user, specified by ID or screen name as per the required id parameter.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserList(int)">showUserList(int)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Show the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserList(long, java.lang.String)">showUserList(long, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Show the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserListMembership(int, long)">showUserListMembership(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Check if a user is a member of the specified list.<br>
<br>This method calls http://api.twitter.com/1.1/lists/members/show.json</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserListMembership(long, java.lang.String, long)">showUserListMembership(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Check if a user is a member of the specified list.<br>
<br>This method calls http://api.twitter.com/1.1/lists/members/show.json</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserListSubscription(int, long)">showUserListSubscription(int, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Check if the specified user is a subscriber of the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#showUserListSubscription(long, java.lang.String, long)">showUserListSubscription(long, String, long)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Check if the specified user is a subscriber of the specified list.</div>
</dd>
<dt><a href="./twitter4j/api/SpamReportingResourceAsync.html" title="interface in twitter4j.api"><span class="strong">SpamReportingResourceAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>
<div class="block">Not yet supported.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#subscribedUserList(twitter4j.UserList)">subscribedUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#subscribedUserList(twitter4j.UserList)">subscribedUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/api/SuggestedUsersResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">SuggestedUsersResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_T_">
<!-- -->
</a>
<h2 class="title">T</h2>
<dl>
<dt><a href="./twitter4j/api/TimelinesResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">TimelinesResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/api/TrendsResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">TrendsResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">TweetsResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/package-summary.html">twitter4j</a> - package twitter4j</dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/api/package-summary.html">twitter4j.api</a> - package twitter4j.api</dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/auth/package-summary.html">twitter4j.auth</a> - package twitter4j.auth</dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j"><span class="strong">TwitterAdapter</span></a> - Class in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>
<div class="block">A handy adapter of TwitterListener.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#TwitterAdapter()">TwitterAdapter()</a></span> - Constructor for class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><a href="./twitter4j/TwitterListener.html" title="interface in twitter4j"><span class="strong">TwitterListener</span></a> - Interface in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>
<div class="block">A listener for receiving asynchronous responses from Twitter Async APIs.</div>
</dd>
<dt><a href="./twitter4j/TwitterMethod.html" title="enum in twitter4j"><span class="strong">TwitterMethod</span></a> - Enum in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_U_">
<!-- -->
</a>
<h2 class="title">U</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#unsubscribedUserList(twitter4j.UserList)">unsubscribedUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#unsubscribedUserList(twitter4j.UserList)">unsubscribedUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateAccountSettings(java.lang.Integer, java.lang.Boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">updateAccountSettings(Integer, Boolean, String, String, String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Updates the current trend, geo, language, timezone and sleep time information for the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedAccountSettings(twitter4j.AccountSettings)">updatedAccountSettings(AccountSettings)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedAccountSettings(twitter4j.AccountSettings)">updatedAccountSettings(AccountSettings)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedFriendship(twitter4j.Relationship)">updatedFriendship(Relationship)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedFriendship(twitter4j.Relationship)">updatedFriendship(Relationship)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedProfile(twitter4j.User)">updatedProfile(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedProfile(twitter4j.User)">updatedProfile(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedProfileBackgroundImage(twitter4j.User)">updatedProfileBackgroundImage(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedProfileBackgroundImage(twitter4j.User)">updatedProfileBackgroundImage(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedProfileBanner()">updatedProfileBanner()</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedProfileBanner()">updatedProfileBanner()</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedProfileColors(twitter4j.User)">updatedProfileColors(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedProfileColors(twitter4j.User)">updatedProfileColors(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedProfileImage(twitter4j.User)">updatedProfileImage(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedProfileImage(twitter4j.User)">updatedProfileImage(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedStatus(twitter4j.Status)">updatedStatus(Status)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedStatus(twitter4j.Status)">updatedStatus(Status)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#updatedUserList(twitter4j.UserList)">updatedUserList(UserList)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#updatedUserList(twitter4j.UserList)">updatedUserList(UserList)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#updateFriendship(long, boolean, boolean)">updateFriendship(long, boolean, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows you to enable or disable retweets and device notifications from the specified user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/FriendsFollowersResourcesAsync.html#updateFriendship(java.lang.String, boolean, boolean)">updateFriendship(String, boolean, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/FriendsFollowersResourcesAsync.html" title="interface in twitter4j.api">FriendsFollowersResourcesAsync</a></dt>
<dd>
<div class="block">Allows you to enable or disable retweets and device notifications from the specified user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfile(java.lang.String, java.lang.String, java.lang.String, java.lang.String)">updateProfile(String, String, String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Sets values that users are able to set under the "Account" tab of their settings page.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileBackgroundImage(java.io.File, boolean)">updateProfileBackgroundImage(File, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's profile background image.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileBackgroundImage(java.io.InputStream, boolean)">updateProfileBackgroundImage(InputStream, boolean)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's profile background image.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileBanner(java.io.File)">updateProfileBanner(File)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Uploads a profile banner on behalf of the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileBanner(java.io.InputStream)">updateProfileBanner(InputStream)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Uploads a profile banner on behalf of the authenticating user.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileColors(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">updateProfileColors(String, String, String, String, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileImage(java.io.File)">updateProfileImage(File)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's profile image.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#updateProfileImage(java.io.InputStream)">updateProfileImage(InputStream)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's profile image.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#updateStatus(java.lang.String)">updateStatus(String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's status.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/TweetsResourcesAsync.html#updateStatus(twitter4j.StatusUpdate)">updateStatus(StatusUpdate)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/TweetsResourcesAsync.html" title="interface in twitter4j.api">TweetsResourcesAsync</a></dt>
<dd>
<div class="block">Updates the authenticating user's status.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#updateUserList(int, java.lang.String, boolean, java.lang.String)">updateUserList(int, String, boolean, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Updates the specified list.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/api/ListsResourcesAsync.html#updateUserList(long, java.lang.String, java.lang.String, boolean, java.lang.String)">updateUserList(long, String, String, boolean, String)</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/ListsResourcesAsync.html" title="interface in twitter4j.api">ListsResourcesAsync</a></dt>
<dd>
<div class="block">Updates the specified list.</div>
</dd>
<dt><a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api"><span class="strong">UsersResourcesAsync</span></a> - Interface in <a href="./twitter4j/api/package-summary.html">twitter4j.api</a></dt>
<dd>&nbsp;</dd>
</dl>
<a name="_V_">
<!-- -->
</a>
<h2 class="title">V</h2>
<dl>
<dt><span class="strong"><a href="./twitter4j/TwitterMethod.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum twitter4j.<a href="./twitter4j/TwitterMethod.html" title="enum in twitter4j">TwitterMethod</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterMethod.html#values()">values()</a></span> - Static method in enum twitter4j.<a href="./twitter4j/TwitterMethod.html" title="enum in twitter4j">TwitterMethod</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterAdapter.html#verifiedCredentials(twitter4j.User)">verifiedCredentials(User)</a></span> - Method in class twitter4j.<a href="./twitter4j/TwitterAdapter.html" title="class in twitter4j">TwitterAdapter</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/TwitterListener.html#verifiedCredentials(twitter4j.User)">verifiedCredentials(User)</a></span> - Method in interface twitter4j.<a href="./twitter4j/TwitterListener.html" title="interface in twitter4j">TwitterListener</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./twitter4j/api/UsersResourcesAsync.html#verifyCredentials()">verifyCredentials()</a></span> - Method in interface twitter4j.api.<a href="./twitter4j/api/UsersResourcesAsync.html" title="interface in twitter4j.api">UsersResourcesAsync</a></dt>
<dd>
<div class="block">Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; returns a 401 status code and an error message if not.</div>
</dd>
<dt><a href="./twitter4j/VersionAsync.html" title="class in twitter4j"><span class="strong">VersionAsync</span></a> - Class in <a href="./twitter4j/package-summary.html">twitter4j</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="#_A_">A</a>&nbsp;<a href="#_C_">C</a>&nbsp;<a href="#_D_">D</a>&nbsp;<a href="#_F_">F</a>&nbsp;<a href="#_G_">G</a>&nbsp;<a href="#_H_">H</a>&nbsp;<a href="#_L_">L</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_P_">P</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a href="#_S_">S</a>&nbsp;<a href="#_T_">T</a>&nbsp;<a href="#_U_">U</a>&nbsp;<a href="#_V_">V</a>&nbsp;</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="./overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="./overview-tree.html">Tree</a></li>
<li><a href="./deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="./help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="./allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2013. All Rights Reserved.</small></p>
</body>
</html>