-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-all.html
4242 lines (4242 loc) · 753 KB
/
index-all.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (21) -->
<title>Index (fastasyncvoxelsniper 3.2.2)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="index">
<meta name="generator" content="javadoc/IndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="script-dir/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
</head>
<body class="index-page">
<script type="text/javascript">var pathtoroot = "./";
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="flex-box">
<header role="banner" class="flex-header">
<nav role="navigation">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="top-nav" id="navbar-top"><button id="navbar-toggle-button" aria-controls="navbar-top" aria-expanded="false" aria-label="Toggle navigation links"><span class="nav-bar-toggle-icon"> </span><span class="nav-bar-toggle-icon"> </span><span class="nav-bar-toggle-icon"> </span></button>
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
<li><a href="index.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li class="nav-bar-cell1-rev">Index</li>
<li><a href="help-doc.html#index">Help</a></li>
</ul>
</div>
<div class="sub-nav">
<div id="navbar-sub-list"></div>
<div class="nav-list-search"><a href="search.html">SEARCH</a>
<input type="text" id="search-input" disabled placeholder="Search">
<input type="reset" id="reset-button" disabled value="reset">
</div>
</div>
<!-- ========= END OF TOP NAVBAR ========= -->
<span class="skip-nav" id="skip-navbar-top"></span></nav>
</header>
<div class="flex-content">
<main role="main">
<div class="header">
<h1>Index</h1>
</div>
<a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <br><a href="allclasses-index.html">All Classes and Interfaces</a><span class="vertical-separator">|</span><a href="allpackages-index.html">All Packages</a><span class="vertical-separator">|</span><a href="constant-values.html">Constant Field Values</a><span class="vertical-separator">|</span><a href="serialized-form.html">Serialized Form</a>
<h2 class="title" id="I:A">A</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#ABSORPTION" class="member-name-link">ABSORPTION</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">AbstractBlendBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html#%3Cinit%3E()" class="member-name-link">AbstractBlendBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">AbstractBlendBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#%3Cinit%3E()" class="member-name-link">AbstractBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractFileArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractFileArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractFileArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin,java.nio.file.Path,java.lang.String)" class="member-name-link">AbstractFileArgument(VoxelSniperPlugin, Path, String)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractFileArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractFileArgument</a></dt>
<dd>
<div class="block">Create an abstract file argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractPatternArgument<T></a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin,com.sk89q.worldedit.internal.registry.AbstractFactory,java.lang.String)" class="member-name-link">AbstractPatternArgument(VoxelSniperPlugin, AbstractFactory<T>, String)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractPatternArgument</a></dt>
<dd>
<div class="block">Create an abstract pattern argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/AbstractPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type">AbstractPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/package-summary.html">com.thevoxelbox.voxelsniper.performer.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/AbstractPerformer.html#%3Cinit%3E()" class="member-name-link">AbstractPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.<a href="com/thevoxelbox/voxelsniper/performer/type/AbstractPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type">AbstractPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html#%3Cinit%3E()" class="member-name-link">AbstractPerformerBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractRegistryArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractRegistryArgument<T></a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractRegistryArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin,com.sk89q.worldedit.registry.NamespacedRegistry,java.lang.String)" class="member-name-link">AbstractRegistryArgument(VoxelSniperPlugin, NamespacedRegistry<T>, String)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractRegistryArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractRegistryArgument</a></dt>
<dd>
<div class="block">Create an abstract pattern argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/stamp/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.stamp</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#%3Cinit%3E()" class="member-name-link">AbstractStampBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/ThreePointCircleBrush.Tolerance.html#ACCURATE" class="member-name-link">ACCURATE</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/ThreePointCircleBrush.Tolerance.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">ThreePointCircleBrush.Tolerance</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html#add(com.sk89q.worldedit.world.block.BlockType)" class="member-name-link">add(BlockType)</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSetBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html#add(java.lang.String)" class="member-name-link">add(String)</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSetBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html#addToolAction(com.sk89q.worldedit.world.item.ItemType,com.thevoxelbox.voxelsniper.sniper.toolkit.ToolAction)" class="member-name-link">addToolAction(ItemType, ToolAction)</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">Toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html#addToolkit(com.thevoxelbox.voxelsniper.sniper.toolkit.Toolkit)" class="member-name-link">addToolkit(Toolkit)</a> - Method in class com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html" title="class in com.thevoxelbox.voxelsniper.sniper">Sniper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#addToVoxelList(com.sk89q.worldedit.world.block.BlockState)" class="member-name-link">addToVoxelList(BlockState)</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html#AIRS" class="member-name-link">AIRS</a> - Static variable in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSets</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html#alias(java.lang.String)" class="member-name-link">alias(String)</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a></dt>
<dd>
<div class="block">Adds an alias.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html#alias(java.lang.String)" class="member-name-link">alias(String)</a> - Method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerPropertiesBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#ALL_POTION" class="member-name-link">ALL_POTION</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPatternType.html#ANY" class="member-name-link">ANY</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPatternType.html" title="enum class in com.thevoxelbox.voxelsniper.brush.property">BrushPatternType</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#arePersistentSessionsEnabled()" class="member-name-link">arePersistentSessionsEnabled()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return if persistent sessions are enabled.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#arePersistentSessionsEnabled()" class="member-name-link">arePersistentSessionsEnabled()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return if persistent sessions are enabled.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolAction.html#ARROW" class="member-name-link">ARROW</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolAction.html" title="enum class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolAction</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/ArtHelper.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.util">ArtHelper</a> - Class in <a href="com/thevoxelbox/voxelsniper/util/package-summary.html">com.thevoxelbox.voxelsniper.util</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html#asBlockState()" class="member-name-link">asBlockState()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a></dt>
<dd>
<div class="block">Try to parse the pattern as a block state.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html#asBlockType()" class="member-name-link">asBlockType()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a></dt>
<dd>
<div class="block">Try to parse the pattern as a block type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html#at(int,int,int)" class="member-name-link">at(int, int, int)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html#at(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">at(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a></dt>
<dd> </dd>
</dl>
<h2 class="title" id="I:B">B</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/SignOverwriteBrush.Side.html#BACK" class="member-name-link">BACK</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/SignOverwriteBrush.Side.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">SignOverwriteBrush.Side</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/BallBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">BallBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd>
<div class="block">A brush that creates a solid ball.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/BallBrush.html#%3Cinit%3E()" class="member-name-link">BallBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/BallBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">BallBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BiomeBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">BiomeBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BiomeBrush.html#%3Cinit%3E()" class="member-name-link">BiomeBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/BiomeBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">BiomeBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BiomeTypeArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">BiomeTypeArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BiomeTypeArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BiomeTypeArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/BiomeTypeArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">BiomeTypeArgument</a></dt>
<dd>
<div class="block">Create a biome type argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html#blend(com.thevoxelbox.voxelsniper.sniper.snipe.Snipe)" class="member-name-link">blend(Snipe)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">AbstractBlendBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendBallBrush.html#blend(com.thevoxelbox.voxelsniper.sniper.snipe.Snipe)" class="member-name-link">blend(Snipe)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendBallBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendBallBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendDiscBrush.html#blend(com.thevoxelbox.voxelsniper.sniper.snipe.Snipe)" class="member-name-link">blend(Snipe)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendDiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendDiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelBrush.html#blend(com.thevoxelbox.voxelsniper.sniper.snipe.Snipe)" class="member-name-link">blend(Snipe)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelDiscBrush.html#blend(com.thevoxelbox.voxelsniper.sniper.snipe.Snipe)" class="member-name-link">blend(Snipe)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelDiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelDiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendBallBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendBallBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendBallBrush.html#%3Cinit%3E()" class="member-name-link">BlendBallBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendBallBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendBallBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendDiscBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendDiscBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendDiscBrush.html#%3Cinit%3E()" class="member-name-link">BlendDiscBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendDiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendDiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelBrush.html#%3Cinit%3E()" class="member-name-link">BlendVoxelBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelDiscBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelDiscBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelDiscBrush.html#%3Cinit%3E()" class="member-name-link">BlendVoxelDiscBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/BlendVoxelDiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">BlendVoxelDiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#BLINDNESS" class="member-name-link">BLINDNESS</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/BlobBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">BlobBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/BlobBrush.html#%3Cinit%3E()" class="member-name-link">BlobBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/BlobBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">BlobBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html#block()" class="member-name-link">block()</a> - Method in record class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html" title="class in com.thevoxelbox.voxelsniper.command.argument">VoxelListBlocksArgument.BlockWrapper</a></dt>
<dd>
<div class="block">Returns the value of the <a href="./com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html#param-block"><code>block</code></a> record component.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html#block(com.thevoxelbox.voxelsniper.util.painter.Painter)" class="member-name-link">block(Painter)</a> - Static method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html" title="class in com.thevoxelbox.voxelsniper.util.painter">Painters</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/SpiralStaircaseBrush.StairType.html#BLOCK" class="member-name-link">BLOCK</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/SpiralStaircaseBrush.StairType.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">SpiralStaircaseBrush.StairType</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stencil/StencilReader.BlockDataReader.html#BLOCK_DATA" class="member-name-link">BLOCK_DATA</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.stencil.<a href="com/thevoxelbox/voxelsniper/brush/type/stencil/StencilReader.BlockDataReader.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.stencil">StencilReader.BlockDataReader</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BlockArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">BlockArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BlockArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BlockArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/BlockArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">BlockArgument</a></dt>
<dd>
<div class="block">Create a block argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a> - Class in <a href="com/thevoxelbox/voxelsniper/util/painter/package-summary.html">com.thevoxelbox.voxelsniper.util.painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html#%3Cinit%3E(com.sk89q.worldedit.math.BlockVector3,com.thevoxelbox.voxelsniper.util.painter.BlockSetter)" class="member-name-link">BlockPainter(BlockVector3, BlockSetter)</a> - Constructor for class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">BlockResetBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetBrush.html#%3Cinit%3E()" class="member-name-link">BlockResetBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">BlockResetBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetSurfaceBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">BlockResetSurfaceBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd>
<div class="block">This brush only looks for solid blocks, and then changes those plus any air blocks touching them.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetSurfaceBrush.html#%3Cinit%3E()" class="member-name-link">BlockResetSurfaceBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/BlockResetSurfaceBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">BlockResetSurfaceBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#blockSetter(com.thevoxelbox.voxelsniper.util.painter.BlockSetter)" class="member-name-link">blockSetter(BlockSetter)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#blockSetter(com.thevoxelbox.voxelsniper.util.painter.BlockSetter)" class="member-name-link">blockSetter(BlockSetter)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#blockSetter(com.thevoxelbox.voxelsniper.util.painter.BlockSetter)" class="member-name-link">blockSetter(BlockSetter)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#blockSetter(com.thevoxelbox.voxelsniper.util.painter.BlockSetter)" class="member-name-link">blockSetter(BlockSetter)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockSetter.html" class="type-name-link" title="interface in com.thevoxelbox.voxelsniper.util.painter">BlockSetter</a> - Interface in <a href="com/thevoxelbox/voxelsniper/util/painter/package-summary.html">com.thevoxelbox.voxelsniper.util.painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/BlockTracer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">BlockTracer</a> - Class in <a href="com/thevoxelbox/voxelsniper/sniper/toolkit/package-summary.html">com.thevoxelbox.voxelsniper.sniper.toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/BlockTracer.html#%3Cinit%3E(org.bukkit.entity.Player,int)" class="member-name-link">BlockTracer(Player, int)</a> - Constructor for class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/BlockTracer.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">BlockTracer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BlockTypeArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">BlockTypeArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BlockTypeArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BlockTypeArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/BlockTypeArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">BlockTypeArgument</a></dt>
<dd>
<div class="block">Create a block type argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html#%3Cinit%3E(com.sk89q.worldedit.world.block.BlockState,boolean)" class="member-name-link">BlockWrapper(BlockState, boolean)</a> - Constructor for record class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html" title="class in com.thevoxelbox.voxelsniper.command.argument">VoxelListBlocksArgument.BlockWrapper</a></dt>
<dd>
<div class="block">Creates an instance of a <code>BlockWrapper</code> record class.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/Brush.html" class="type-name-link" title="interface in com.thevoxelbox.voxelsniper.brush">Brush</a> - Interface in <a href="com/thevoxelbox/voxelsniper/brush/package-summary.html">com.thevoxelbox.voxelsniper.brush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#BRUSH_PROPERTIES" class="member-name-link">BRUSH_PROPERTIES</a> - Static variable in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushCreator.html" class="type-name-link" title="interface in com.thevoxelbox.voxelsniper.brush.property">BrushCreator</a> - Interface in <a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/BrushExecutor.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.executor">BrushExecutor</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/executor/package-summary.html">com.thevoxelbox.voxelsniper.command.executor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/BrushExecutor.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BrushExecutor(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.executor.<a href="com/thevoxelbox/voxelsniper/command/executor/BrushExecutor.html" title="class in com.thevoxelbox.voxelsniper.command.executor">BrushExecutor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html#brushNameMessage()" class="member-name-link">brushNameMessage()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.message.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe.message">SnipeMessageSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html#brushNameMessage(java.lang.String)" class="member-name-link">brushNameMessage(String)</a> - Method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html" title="class in com.thevoxelbox.voxelsniper.util.message">MessageSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a></dt>
<dd>
<div class="block">A BrushPattern based on a WE pattern and a name.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html#%3Cinit%3E(com.sk89q.worldedit.function.pattern.Pattern,java.lang.String)" class="member-name-link">BrushPattern(Pattern, String)</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a></dt>
<dd>
<div class="block">Create a new brush pattern.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html#%3Cinit%3E(com.sk89q.worldedit.world.block.BlockState)" class="member-name-link">BrushPattern(BlockState)</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a></dt>
<dd>
<div class="block">Create a new brush pattern from a block state.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html#%3Cinit%3E(com.sk89q.worldedit.world.block.BlockType)" class="member-name-link">BrushPattern(BlockType)</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPattern.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPattern</a></dt>
<dd>
<div class="block">Create a new brush pattern from a block type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html#brushPatternType(com.thevoxelbox.voxelsniper.brush.property.BrushPatternType)" class="member-name-link">brushPatternType(BrushPatternType)</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a></dt>
<dd>
<div class="block">Sets the brush pattern type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPatternType.html" class="type-name-link" title="enum class in com.thevoxelbox.voxelsniper.brush.property">BrushPatternType</a> - Enum Class in <a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a></dt>
<dd>
<div class="block">Main user BrushPattern types for internal usage.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushProperties</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BrushPropertiesArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">BrushPropertiesArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/BrushPropertiesArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BrushPropertiesArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/BrushPropertiesArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">BrushPropertiesArgument</a></dt>
<dd>
<div class="block">Create a brush properties argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a></dt>
<dd>
<div class="block">The type Brush properties builder.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html#%3Cinit%3E()" class="member-name-link">BrushPropertiesBuilder()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/BrushRegistrar.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper">BrushRegistrar</a> - Class in <a href="com/thevoxelbox/voxelsniper/package-summary.html">com.thevoxelbox.voxelsniper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/BrushRegistrar.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.brush.BrushRegistry,java.io.File)" class="member-name-link">BrushRegistrar(BrushRegistry, File)</a> - Constructor for class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/BrushRegistrar.html" title="class in com.thevoxelbox.voxelsniper">BrushRegistrar</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush">BrushRegistry</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/package-summary.html">com.thevoxelbox.voxelsniper.brush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html#%3Cinit%3E()" class="member-name-link">BrushRegistry()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.<a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html" title="class in com.thevoxelbox.voxelsniper.brush">BrushRegistry</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html#brushSizeMessage()" class="member-name-link">brushSizeMessage()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.message.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe.message">SnipeMessageSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html#brushSizeMessage(int)" class="member-name-link">brushSizeMessage(int)</a> - Method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html" title="class in com.thevoxelbox.voxelsniper.util.message">MessageSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/BrushToolkitExecutor.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.executor">BrushToolkitExecutor</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/executor/package-summary.html">com.thevoxelbox.voxelsniper.command.executor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/BrushToolkitExecutor.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">BrushToolkitExecutor(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.executor.<a href="com/thevoxelbox/voxelsniper/command/executor/BrushToolkitExecutor.html" title="class in com.thevoxelbox.voxelsniper.command.executor">BrushToolkitExecutor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html#build()" class="member-name-link">build()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a></dt>
<dd>
<div class="block">Build the brush properties.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html#build()" class="member-name-link">build()</a> - Method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerPropertiesBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html#build()" class="member-name-link">build()</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSetBuilder.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSetBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html#builder()" class="member-name-link">builder()</a> - Static method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushProperties</a></dt>
<dd>
<div class="block">Create a builder for brush properties.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html#builder()" class="member-name-link">builder()</a> - Static method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html#builder()" class="member-name-link">builder()</a> - Static method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSet</a></dt>
<dd> </dd>
</dl>
<h2 class="title" id="I:C">C</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonBrush.html#canyon(int,int)" class="member-name-link">canyon(int, int)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.canyon.<a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.canyon">CanyonBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.canyon">CanyonBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/canyon/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.canyon</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonBrush.html#%3Cinit%3E()" class="member-name-link">CanyonBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.canyon.<a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.canyon">CanyonBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonSelectionBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.canyon">CanyonSelectionBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/canyon/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.canyon</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonSelectionBrush.html#%3Cinit%3E()" class="member-name-link">CanyonSelectionBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.canyon.<a href="com/thevoxelbox/voxelsniper/brush/type/canyon/CanyonSelectionBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.canyon">CanyonSelectionBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#center(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">center(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#center(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">center(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#center(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">center(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#center(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">center(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#center(org.bukkit.block.Block)" class="member-name-link">center(Block)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#center(org.bukkit.block.Block)" class="member-name-link">center(Block)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#center(org.bukkit.block.Block)" class="member-name-link">center(Block)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#center(org.bukkit.block.Block)" class="member-name-link">center(Block)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#center(org.bukkit.Location)" class="member-name-link">center(Location)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#center(org.bukkit.Location)" class="member-name-link">center(Location)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#center(org.bukkit.Location)" class="member-name-link">center(Location)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#center(org.bukkit.Location)" class="member-name-link">center(Location)</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/CheckerVoxelDiscBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">CheckerVoxelDiscBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/CheckerVoxelDiscBrush.html#%3Cinit%3E()" class="member-name-link">CheckerVoxelDiscBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/CheckerVoxelDiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">CheckerVoxelDiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html#CHESTS" class="member-name-link">CHESTS</a> - Static variable in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSets</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#CHUNK_SIZE" class="member-name-link">CHUNK_SIZE</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html#circle()" class="member-name-link">circle()</a> - Static method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html" title="class in com.thevoxelbox.voxelsniper.util.painter">Painters</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html#circleArea(int)" class="member-name-link">circleArea(int)</a> - Static method in class com.thevoxelbox.voxelsniper.util.math.<a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html" title="class in com.thevoxelbox.voxelsniper.util.math">MathHelper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a> - Class in <a href="com/thevoxelbox/voxelsniper/util/painter/package-summary.html">com.thevoxelbox.voxelsniper.util.painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#%3Cinit%3E()" class="member-name-link">CirclePainter()</a> - Constructor for class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#clampY(int)" class="member-name-link">clampY(int)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#clampY(int,int,int)" class="member-name-link">clampY(int, int, int)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#clampY(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">clampY(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CleanSnowBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">CleanSnowBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CleanSnowBrush.html#%3Cinit%3E()" class="member-name-link">CleanSnowBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/CleanSnowBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">CleanSnowBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#clearVoxelList()" class="member-name-link">clearVoxelList()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#clone" class="member-name-link">clone</a> - Variable in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/CloneStampBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">CloneStampBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/stamp/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.stamp</a></dt>
<dd>
<div class="block">The CloneStamp class is used to create a collection of blocks in a cylinder shape according to the selection the player has set.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/CloneStampBrush.html#%3Cinit%3E()" class="member-name-link">CloneStampBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/CloneStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">CloneStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/package-summary.html">com.thevoxelbox.voxelsniper</a> - package com.thevoxelbox.voxelsniper</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/package-summary.html">com.thevoxelbox.voxelsniper.brush</a> - package com.thevoxelbox.voxelsniper.brush</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/package-summary.html">com.thevoxelbox.voxelsniper.brush.property</a> - package com.thevoxelbox.voxelsniper.brush.property</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a> - package com.thevoxelbox.voxelsniper.brush.type</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.blend</a> - package com.thevoxelbox.voxelsniper.brush.type.blend</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/canyon/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.canyon</a> - package com.thevoxelbox.voxelsniper.brush.type.canyon</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/entity/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.entity</a> - package com.thevoxelbox.voxelsniper.brush.type.entity</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a> - package com.thevoxelbox.voxelsniper.brush.type.performer</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer.disc</a> - package com.thevoxelbox.voxelsniper.brush.type.performer.disc</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/splatter/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer.splatter</a> - package com.thevoxelbox.voxelsniper.brush.type.performer.splatter</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/redstone/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.redstone</a> - package com.thevoxelbox.voxelsniper.brush.type.redstone</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/rotation/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.rotation</a> - package com.thevoxelbox.voxelsniper.brush.type.rotation</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/shell/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.shell</a> - package com.thevoxelbox.voxelsniper.brush.type.shell</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.stamp</a> - package com.thevoxelbox.voxelsniper.brush.type.stamp</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stencil/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.stencil</a> - package com.thevoxelbox.voxelsniper.brush.type.stencil</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/package-summary.html">com.thevoxelbox.voxelsniper.command</a> - package com.thevoxelbox.voxelsniper.command</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a> - package com.thevoxelbox.voxelsniper.command.argument</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/annotation/package-summary.html">com.thevoxelbox.voxelsniper.command.argument.annotation</a> - package com.thevoxelbox.voxelsniper.command.argument.annotation</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/package-summary.html">com.thevoxelbox.voxelsniper.command.executor</a> - package com.thevoxelbox.voxelsniper.command.executor</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/package-summary.html">com.thevoxelbox.voxelsniper.config</a> - package com.thevoxelbox.voxelsniper.config</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/listener/package-summary.html">com.thevoxelbox.voxelsniper.listener</a> - package com.thevoxelbox.voxelsniper.listener</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/package-summary.html">com.thevoxelbox.voxelsniper.performer</a> - package com.thevoxelbox.voxelsniper.performer</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/package-summary.html">com.thevoxelbox.voxelsniper.performer.property</a> - package com.thevoxelbox.voxelsniper.performer.property</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/package-summary.html">com.thevoxelbox.voxelsniper.performer.type</a> - package com.thevoxelbox.voxelsniper.performer.type</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a> - package com.thevoxelbox.voxelsniper.performer.type.combo</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/ink/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.ink</a> - package com.thevoxelbox.voxelsniper.performer.type.ink</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/material/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.material</a> - package com.thevoxelbox.voxelsniper.performer.type.material</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/package-summary.html">com.thevoxelbox.voxelsniper.sniper</a> - package com.thevoxelbox.voxelsniper.sniper</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/package-summary.html">com.thevoxelbox.voxelsniper.sniper.snipe</a> - package com.thevoxelbox.voxelsniper.sniper.snipe</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/package-summary.html">com.thevoxelbox.voxelsniper.sniper.snipe.message</a> - package com.thevoxelbox.voxelsniper.sniper.snipe.message</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/package-summary.html">com.thevoxelbox.voxelsniper.sniper.snipe.performer</a> - package com.thevoxelbox.voxelsniper.sniper.snipe.performer</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/message/package-summary.html">com.thevoxelbox.voxelsniper.sniper.snipe.performer.message</a> - package com.thevoxelbox.voxelsniper.sniper.snipe.performer.message</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/package-summary.html">com.thevoxelbox.voxelsniper.sniper.toolkit</a> - package com.thevoxelbox.voxelsniper.sniper.toolkit</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/package-summary.html">com.thevoxelbox.voxelsniper.util</a> - package com.thevoxelbox.voxelsniper.util</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/io/package-summary.html">com.thevoxelbox.voxelsniper.util.io</a> - package com.thevoxelbox.voxelsniper.util.io</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/package-summary.html">com.thevoxelbox.voxelsniper.util.material</a> - package com.thevoxelbox.voxelsniper.util.material</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/math/package-summary.html">com.thevoxelbox.voxelsniper.util.math</a> - package com.thevoxelbox.voxelsniper.util.math</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/package-summary.html">com.thevoxelbox.voxelsniper.util.message</a> - package com.thevoxelbox.voxelsniper.util.message</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/minecraft/package-summary.html">com.thevoxelbox.voxelsniper.util.minecraft</a> - package com.thevoxelbox.voxelsniper.util.minecraft</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/package-summary.html">com.thevoxelbox.voxelsniper.util.painter</a> - package com.thevoxelbox.voxelsniper.util.painter</dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboNoPhysicsPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboComboNoPhysicsPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboNoPhysicsPerformer.html#%3Cinit%3E()" class="member-name-link">ComboComboNoPhysicsPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboNoPhysicsPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboComboNoPhysicsPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboComboPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboPerformer.html#%3Cinit%3E()" class="member-name-link">ComboComboPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboComboPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboComboPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkNoPhysicsPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboInkNoPhysicsPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkNoPhysicsPerformer.html#%3Cinit%3E()" class="member-name-link">ComboInkNoPhysicsPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkNoPhysicsPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboInkNoPhysicsPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboInkPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkPerformer.html#%3Cinit%3E()" class="member-name-link">ComboInkPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboInkPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboInkPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialNoPhysicsPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboMaterialNoPhysicsPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialNoPhysicsPerformer.html#%3Cinit%3E()" class="member-name-link">ComboMaterialNoPhysicsPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialNoPhysicsPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboMaterialNoPhysicsPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboMaterialPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialPerformer.html#%3Cinit%3E()" class="member-name-link">ComboMaterialPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboMaterialPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboMaterialPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboNoPhysicsPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboNoPhysicsPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboNoPhysicsPerformer.html#%3Cinit%3E()" class="member-name-link">ComboNoPhysicsPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboNoPhysicsPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboNoPhysicsPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboPerformer.html#%3Cinit%3E()" class="member-name-link">ComboPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ComboPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ComboPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CometBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">CometBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CometBrush.html#%3Cinit%3E()" class="member-name-link">CometBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/CometBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">CometBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/CommandRegistrar.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper">CommandRegistrar</a> - Class in <a href="com/thevoxelbox/voxelsniper/package-summary.html">com.thevoxelbox.voxelsniper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/CommandRegistrar.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin,com.thevoxelbox.voxelsniper.command.CommandRegistry)" class="member-name-link">CommandRegistrar(VoxelSniperPlugin, CommandRegistry)</a> - Constructor for class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/CommandRegistrar.html" title="class in com.thevoxelbox.voxelsniper">CommandRegistrar</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command">CommandRegistry</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/package-summary.html">com.thevoxelbox.voxelsniper.command</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">CommandRegistry(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.<a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html" title="class in com.thevoxelbox.voxelsniper.command">CommandRegistry</a></dt>
<dd>
<div class="block">Create a new command registry.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/SniperSender.html#commandSender" class="member-name-link">commandSender</a> - Variable in class com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/SniperSender.html" title="class in com.thevoxelbox.voxelsniper.sniper">SniperSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html#config" class="member-name-link">config</a> - Variable in class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractPatternArgument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#CONFIG" class="member-name-link">CONFIG</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html#CONFIG_HOLDER" class="member-name-link">CONFIG_HOLDER</a> - Static variable in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html" title="class in com.thevoxelbox.voxelsniper.util.message">VoxelSniperText</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html#contains(com.sk89q.worldedit.world.block.BlockState)" class="member-name-link">contains(BlockState)</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSet</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html#contains(com.sk89q.worldedit.world.block.BlockType)" class="member-name-link">contains(BlockType)</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSet</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html#copyFile(java.lang.String,java.io.File)" class="member-name-link">copyFile(String, File)</a> - Static method in class com.thevoxelbox.voxelsniper.util.io.<a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html" title="class in com.thevoxelbox.voxelsniper.util.io">FileUtils</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html#copyFile(java.lang.String,java.io.File,java.lang.String)" class="member-name-link">copyFile(String, File, String)</a> - Static method in class com.thevoxelbox.voxelsniper.util.io.<a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html" title="class in com.thevoxelbox.voxelsniper.util.io">FileUtils</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CopyPastaBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">CopyPastaBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/CopyPastaBrush.html#%3Cinit%3E()" class="member-name-link">CopyPastaBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/CopyPastaBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">CopyPastaBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushCreator.html#create()" class="member-name-link">create()</a> - Method in interface com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushCreator.html" title="interface in com.thevoxelbox.voxelsniper.brush.property">BrushCreator</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerCreator.html#create()" class="member-name-link">create()</a> - Method in interface com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerCreator.html" title="interface in com.thevoxelbox.voxelsniper.performer.property">PerformerCreator</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#createBlockTracer(org.bukkit.entity.Player)" class="member-name-link">createBlockTracer(Player)</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#createEntity(com.sk89q.worldedit.math.BlockVector3,org.bukkit.entity.Entity)" class="member-name-link">createEntity(BlockVector3, Entity)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/PerformerSnipe.html#createMessageSender()" class="member-name-link">createMessageSender()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.performer.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/PerformerSnipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe.performer">PerformerSnipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html#createMessageSender()" class="member-name-link">createMessageSender()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe">Snipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/PerformerSnipe.html#createMessenger()" class="member-name-link">createMessenger()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.performer.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/performer/PerformerSnipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe.performer">PerformerSnipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html#createMessenger()" class="member-name-link">createMessenger()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe">Snipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/SniperCommander.html#createParserContext()" class="member-name-link">createParserContext()</a> - Method in interface com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/SniperCommander.html" title="interface in com.thevoxelbox.voxelsniper.sniper">SniperCommander</a></dt>
<dd>
<div class="block">Create a parser context from the sniper commander.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html#creator(com.thevoxelbox.voxelsniper.brush.property.BrushCreator)" class="member-name-link">creator(BrushCreator)</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushPropertiesBuilder</a></dt>
<dd>
<div class="block">Sets the creator.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html#creator(com.thevoxelbox.voxelsniper.performer.property.PerformerCreator)" class="member-name-link">creator(PerformerCreator)</a> - Method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerPropertiesBuilder.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerPropertiesBuilder</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html#cube()" class="member-name-link">cube()</a> - Static method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/Painters.html" title="class in com.thevoxelbox.voxelsniper.util.painter">Painters</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html#cube(double)" class="member-name-link">cube(double)</a> - Static method in class com.thevoxelbox.voxelsniper.util.math.<a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html" title="class in com.thevoxelbox.voxelsniper.util.math">MathHelper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html#cube(int)" class="member-name-link">cube(int)</a> - Static method in class com.thevoxelbox.voxelsniper.util.math.<a href="com/thevoxelbox/voxelsniper/util/math/MathHelper.html" title="class in com.thevoxelbox.voxelsniper.util.math">MathHelper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a> - Class in <a href="com/thevoxelbox/voxelsniper/util/painter/package-summary.html">com.thevoxelbox.voxelsniper.util.painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#%3Cinit%3E()" class="member-name-link">CubePainter()</a> - Constructor for class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/CylinderBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">CylinderBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/CylinderBrush.html#%3Cinit%3E()" class="member-name-link">CylinderBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/CylinderBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">CylinderBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html#cylinderCenterMessage()" class="member-name-link">cylinderCenterMessage()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.message.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/message/SnipeMessageSender.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe.message">SnipeMessageSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html#cylinderCenterMessage(int)" class="member-name-link">cylinderCenterMessage(int)</a> - Method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/MessageSender.html" title="class in com.thevoxelbox.voxelsniper.util.message">MessageSender</a></dt>
<dd> </dd>
</dl>
<h2 class="title" id="I:D">D</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#DAMAGE_RESISTANCE" class="member-name-link">DAMAGE_RESISTANCE</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#DECIMAL_FORMAT" class="member-name-link">DECIMAL_FORMAT</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html#DEFAULT" class="member-name-link">DEFAULT</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.Preset</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/ThreePointCircleBrush.Tolerance.html#DEFAULT" class="member-name-link">DEFAULT</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/ThreePointCircleBrush.Tolerance.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">ThreePointCircleBrush.Tolerance</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampType.html#DEFAULT" class="member-name-link">DEFAULT</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampType.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.stamp">StampType</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/BrushRegistrar.html#DEFAULT_BRUSH_PROPERTIES" class="member-name-link">DEFAULT_BRUSH_PROPERTIES</a> - Static variable in class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/BrushRegistrar.html" title="class in com.thevoxelbox.voxelsniper">BrushRegistrar</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html#DEFAULT_GROWTH_PERCENT" class="member-name-link">DEFAULT_GROWTH_PERCENT</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html#DEFAULT_NAME" class="member-name-link">DEFAULT_NAME</a> - Static variable in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">Toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/PerformerRegistrar.html#DEFAULT_PERFORMER_PROPERTIES" class="member-name-link">DEFAULT_PERFORMER_PROPERTIES</a> - Static variable in class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/PerformerRegistrar.html" title="class in com.thevoxelbox.voxelsniper">PerformerRegistrar</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html#DEFAULT_SEED_PERCENT" class="member-name-link">DEFAULT_SEED_PERCENT</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html#DEFAULT_SPLATTER_RECURSIONS" class="member-name-link">DEFAULT_SPLATTER_RECURSIONS</a> - Static variable in class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/DefaultExecutor.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.executor">DefaultExecutor</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/executor/package-summary.html">com.thevoxelbox.voxelsniper.command.executor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/executor/DefaultExecutor.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">DefaultExecutor(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.executor.<a href="com/thevoxelbox/voxelsniper/command/executor/DefaultExecutor.html" title="class in com.thevoxelbox.voxelsniper.command.executor">DefaultExecutor</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer.disc">DiscBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer.disc</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscBrush.html#%3Cinit%3E()" class="member-name-link">DiscBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.disc.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer.disc">DiscBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscFaceBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer.disc">DiscFaceBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer.disc</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscFaceBrush.html#%3Cinit%3E()" class="member-name-link">DiscFaceBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.disc.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/disc/DiscFaceBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer.disc">DiscFaceBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/DomeBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">DomeBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/DomeBrush.html#%3Cinit%3E()" class="member-name-link">DomeBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/DomeBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">DomeBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/DrainBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">DrainBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/DrainBrush.html#%3Cinit%3E()" class="member-name-link">DrainBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/DrainBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">DrainBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#drop" class="member-name-link">drop</a> - Variable in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#DRUNK" class="member-name-link">DRUNK</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/annotation/DynamicRange.html" class="type-name-link" title="annotation interface in com.thevoxelbox.voxelsniper.command.argument.annotation">DynamicRange</a> - Annotation Interface in <a href="com/thevoxelbox/voxelsniper/command/argument/annotation/package-summary.html">com.thevoxelbox.voxelsniper.command.argument.annotation</a></dt>
<dd>
<div class="block">Used to specify min and max field values of numerical.</div>
</dd>
</dl>
<h2 class="title" id="I:E">E</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipseBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">EllipseBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipseBrush.html#%3Cinit%3E()" class="member-name-link">EllipseBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipseBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">EllipseBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipsoidBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">EllipsoidBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipsoidBrush.html#%3Cinit%3E()" class="member-name-link">EllipsoidBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/EllipsoidBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">EllipsoidBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#enableUpdateChecker(boolean)" class="member-name-link">enableUpdateChecker(boolean)</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Set the update checker be enabled or disabled.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html#ENTITY_CLASSES" class="member-name-link">ENTITY_CLASSES</a> - Static variable in class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityClassArgument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.entity">EntityBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/entity/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.entity</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityBrush.html#%3Cinit%3E()" class="member-name-link">EntityBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.entity.<a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.entity">EntityBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityClassArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">EntityClassArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityClassArgument</a></dt>
<dd>
<div class="block">Create a toolkit argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityRemovalBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.entity">EntityRemovalBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/entity/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.entity</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityRemovalBrush.html#%3Cinit%3E()" class="member-name-link">EntityRemovalBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.entity.<a href="com/thevoxelbox/voxelsniper/brush/type/entity/EntityRemovalBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.entity">EntityRemovalBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityTypeArgument.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityTypeArgument</a> - Class in <a href="com/thevoxelbox/voxelsniper/command/argument/package-summary.html">com.thevoxelbox.voxelsniper.command.argument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityTypeArgument.html#%3Cinit%3E(com.thevoxelbox.voxelsniper.VoxelSniperPlugin)" class="member-name-link">EntityTypeArgument(VoxelSniperPlugin)</a> - Constructor for class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/EntityTypeArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityTypeArgument</a></dt>
<dd>
<div class="block">Create an entity type argument.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Indicates whether some other object is "equal to" this one.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in record class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/VoxelListBlocksArgument.BlockWrapper.html" title="class in com.thevoxelbox.voxelsniper.command.argument">VoxelListBlocksArgument.BlockWrapper</a></dt>
<dd>
<div class="block">Indicates whether some other object is "equal to" this one.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/EraserBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">EraserBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/EraserBrush.html#%3Cinit%3E()" class="member-name-link">EraserBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/EraserBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">EraserBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBlendBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBlendBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBlendBrush.html#%3Cinit%3E()" class="member-name-link">ErodeBlendBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBlendBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBlendBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.html#%3Cinit%3E()" class="member-name-link">ErodeBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a> - Record Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html" class="type-name-link" title="enum class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.Preset</a> - Enum Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#erosionFaces()" class="member-name-link">erosionFaces()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the value of the <code>erosionFaces</code> record component.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#%3Cinit%3E(int,int,int,int)" class="member-name-link">ErosionPreset(int, int, int, int)</a> - Constructor for record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Creates an instance of a <code>ErosionPreset</code> record class.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#erosionRecursions()" class="member-name-link">erosionRecursions()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the value of the <code>erosionRecursions</code> record component.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ExcludeComboPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ExcludeComboPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/combo/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.combo</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/combo/ExcludeComboPerformer.html#%3Cinit%3E()" class="member-name-link">ExcludeComboPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.combo.<a href="com/thevoxelbox/voxelsniper/performer/type/combo/ExcludeComboPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.combo">ExcludeComboPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/ink/ExcludeInkPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.ink">ExcludeInkPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/ink/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.ink</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/ink/ExcludeInkPerformer.html#%3Cinit%3E()" class="member-name-link">ExcludeInkPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.ink.<a href="com/thevoxelbox/voxelsniper/performer/type/ink/ExcludeInkPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.ink">ExcludeInkPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/material/ExcludeMaterialPerformer.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.performer.type.material">ExcludeMaterialPerformer</a> - Class in <a href="com/thevoxelbox/voxelsniper/performer/type/material/package-summary.html">com.thevoxelbox.voxelsniper.performer.type.material</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/type/material/ExcludeMaterialPerformer.html#%3Cinit%3E()" class="member-name-link">ExcludeMaterialPerformer()</a> - Constructor for class com.thevoxelbox.voxelsniper.performer.type.material.<a href="com/thevoxelbox/voxelsniper/performer/type/material/ExcludeMaterialPerformer.html" title="class in com.thevoxelbox.voxelsniper.performer.type.material">ExcludeMaterialPerformer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/VoxelMethodCommandExecutionHandler.html#execute(cloud.commandframework.context.CommandContext)" class="member-name-link">execute(CommandContext<C>)</a> - Method in class com.thevoxelbox.voxelsniper.command.<a href="com/thevoxelbox/voxelsniper/command/VoxelMethodCommandExecutionHandler.html" title="class in com.thevoxelbox.voxelsniper.command">VoxelMethodCommandExecutionHandler</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractFileArgument.html#extension" class="member-name-link">extension</a> - Variable in class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractFileArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractFileArgument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ExtrudeBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">ExtrudeBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ExtrudeBrush.html#%3Cinit%3E()" class="member-name-link">ExtrudeBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ExtrudeBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ExtrudeBrush</a></dt>
<dd> </dd>
</dl>
<h2 class="title" id="I:F">F</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html#factory" class="member-name-link">factory</a> - Variable in class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/AbstractPatternArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">AbstractPatternArgument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#fall" class="member-name-link">fall</a> - Variable in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#falling(com.sk89q.worldedit.world.block.BlockType)" class="member-name-link">falling(BlockType)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html#FALLING" class="member-name-link">FALLING</a> - Static variable in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSets</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html#fallsOff(com.sk89q.worldedit.world.block.BlockType)" class="member-name-link">fallsOff(BlockType)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/AbstractStampBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">AbstractStampBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#FAST_DIGGING" class="member-name-link">FAST_DIGGING</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.util.io">FileUtils</a> - Class in <a href="com/thevoxelbox/voxelsniper/util/io/package-summary.html">com.thevoxelbox.voxelsniper.util.io</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html#%3Cinit%3E()" class="member-name-link">FileUtils()</a> - Constructor for class com.thevoxelbox.voxelsniper.util.io.<a href="com/thevoxelbox/voxelsniper/util/io/FileUtils.html" title="class in com.thevoxelbox.voxelsniper.util.io">FileUtils</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html#FILL" class="member-name-link">FILL</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.Preset</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampType.html#FILL" class="member-name-link">FILL</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampType.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.stamp">StampType</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/FillDownBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">FillDownBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/performer/package-summary.html">com.thevoxelbox.voxelsniper.brush.type.performer</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/FillDownBrush.html#%3Cinit%3E()" class="member-name-link">FillDownBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/FillDownBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">FillDownBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#fillFaces()" class="member-name-link">fillFaces()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the value of the <code>fillFaces</code> record component.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#fillRecursions()" class="member-name-link">fillRecursions()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the value of the <code>fillRecursions</code> record component.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html#findCommonMaterial(java.util.Map)" class="member-name-link">findCommonMaterial(Map<BlockType, Integer>)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.blend.<a href="com/thevoxelbox/voxelsniper/brush/type/blend/AbstractBlendBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.blend">AbstractBlendBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#FIRE" class="member-name-link">FIRE</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#FIRE_RESISTANCE" class="member-name-link">FIRE_RESISTANCE</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/FlatOceanBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">FlatOceanBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/FlatOceanBrush.html#%3Cinit%3E()" class="member-name-link">FlatOceanBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/FlatOceanBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">FlatOceanBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html#FLOAT_CLEAN" class="member-name-link">FLOAT_CLEAN</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.Preset.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.Preset</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html#FLORA" class="member-name-link">FLORA</a> - Static variable in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSets.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSets</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html#FORCE" class="member-name-link">FORCE</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/PunishBrush.Punishment.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type.performer">PunishBrush.Punishment</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html#format(com.sk89q.worldedit.util.formatting.text.Component,java.util.Locale,boolean)" class="member-name-link">format(Component, Locale, boolean)</a> - Static method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html" title="class in com.thevoxelbox.voxelsniper.util.message">VoxelSniperText</a></dt>
<dd>
<div class="block">Formats a component according to locale, prefix presence and children.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html#formatList(java.util.Collection,java.util.function.BiFunction,java.util.function.Function,java.lang.String)" class="member-name-link">formatList(Collection<T>, BiFunction<T, T, Integer>, Function<T, Component>, String)</a> - Static method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html" title="class in com.thevoxelbox.voxelsniper.util.message">VoxelSniperText</a></dt>
<dd>
<div class="block">Formats simple list component (same delimiter).</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html#formatListWithCurrent(java.util.Collection,java.util.function.BiFunction,java.util.function.Function,java.util.function.Function,java.lang.Object,java.lang.String)" class="member-name-link">formatListWithCurrent(Collection<T>, BiFunction<T, T, Integer>, Function<T, Component>, Function<T, Object>, Object, String)</a> - Static method in class com.thevoxelbox.voxelsniper.util.message.<a href="com/thevoxelbox/voxelsniper/util/message/VoxelSniperText.html" title="class in com.thevoxelbox.voxelsniper.util.message">VoxelSniperText</a></dt>
<dd>
<div class="block">Formats list with current component (delimiter may differ).</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/SignOverwriteBrush.Side.html#FRONT" class="member-name-link">FRONT</a> - Enum constant in enum class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/SignOverwriteBrush.Side.html" title="enum class in com.thevoxelbox.voxelsniper.brush.type">SignOverwriteBrush.Side</a></dt>
<dd> </dd>
</dl>
<h2 class="title" id="I:G">G</h2>
<dl class="index">
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#generateTree(com.sk89q.worldedit.math.BlockVector3,com.sk89q.worldedit.util.TreeGenerator.TreeType)" class="member-name-link">generateTree(BlockVector3, TreeGenerator.TreeType)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/GenerateTreeBrush.html" class="type-name-link" title="class in com.thevoxelbox.voxelsniper.brush.type">GenerateTreeBrush</a> - Class in <a href="com/thevoxelbox/voxelsniper/brush/type/package-summary.html">com.thevoxelbox.voxelsniper.brush.type</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/GenerateTreeBrush.html#%3Cinit%3E()" class="member-name-link">GenerateTreeBrush()</a> - Constructor for class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/GenerateTreeBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">GenerateTreeBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html#generator" class="member-name-link">generator</a> - Variable in class com.thevoxelbox.voxelsniper.brush.type.performer.<a href="com/thevoxelbox/voxelsniper/brush/type/performer/AbstractPerformerBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type.performer">AbstractPerformerBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html#getAliases()" class="member-name-link">getAliases()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushProperties</a></dt>
<dd>
<div class="block">Gets the aliases.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html#getAliases()" class="member-name-link">getAliases()</a> - Method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html#getAnnotationParser()" class="member-name-link">getAnnotationParser()</a> - Method in class com.thevoxelbox.voxelsniper.command.<a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html" title="class in com.thevoxelbox.voxelsniper.command">CommandRegistry</a></dt>
<dd>
<div class="block">Return the annotation parser.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getBlock(int,int,int)" class="member-name-link">getBlock(int, int, int)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getBlock(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">getBlock(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampBrushBlockWrapper.html#getBlockData()" class="member-name-link">getBlockData()</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.stamp.<a href="com/thevoxelbox/voxelsniper/brush/type/stamp/StampBrushBlockWrapper.html" title="class in com.thevoxelbox.voxelsniper.brush.type.stamp">StampBrushBlockWrapper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/Painter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in interface com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/Painter.html" title="interface in com.thevoxelbox.voxelsniper.util.painter">Painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#getBlockSetter()" class="member-name-link">getBlockSetter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#getBlockTracerRange()" class="member-name-link">getBlockTracerRange()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getBlockType(int,int,int)" class="member-name-link">getBlockType(int, int, int)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getBlockType(com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">getBlockType(BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html#getBlockTypes()" class="member-name-link">getBlockTypes()</a> - Method in class com.thevoxelbox.voxelsniper.util.material.<a href="com/thevoxelbox/voxelsniper/util/material/MaterialSet.html" title="class in com.thevoxelbox.voxelsniper.util.material">MaterialSet</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getBooleanProperty(java.lang.String,boolean)" class="member-name-link">getBooleanProperty(String, boolean)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html#getBrush()" class="member-name-link">getBrush()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe">Snipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html#getBrush(com.thevoxelbox.voxelsniper.brush.property.BrushProperties)" class="member-name-link">getBrush(BrushProperties)</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">Toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html#getBrushesProperties()" class="member-name-link">getBrushesProperties()</a> - Method in class com.thevoxelbox.voxelsniper.brush.<a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html" title="class in com.thevoxelbox.voxelsniper.brush">BrushRegistry</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html#getBrushPatternType()" class="member-name-link">getBrushPatternType()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushProperties</a></dt>
<dd>
<div class="block">Gets the accepted brush pattern type for this brush.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getBrushProperties()" class="member-name-link">getBrushProperties()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return brush properties.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getBrushProperties()" class="member-name-link">getBrushProperties()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return brush properties.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html#getBrushProperties()" class="member-name-link">getBrushProperties()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.snipe.<a href="com/thevoxelbox/voxelsniper/sniper/snipe/Snipe.html" title="class in com.thevoxelbox.voxelsniper.sniper.snipe">Snipe</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html#getBrushProperties(java.lang.String)" class="member-name-link">getBrushProperties(String)</a> - Method in class com.thevoxelbox.voxelsniper.brush.<a href="com/thevoxelbox/voxelsniper/brush/BrushRegistry.html" title="class in com.thevoxelbox.voxelsniper.brush">BrushRegistry</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/VoxelSniperPlugin.html#getBrushRegistry()" class="member-name-link">getBrushRegistry()</a> - Method in class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/VoxelSniperPlugin.html" title="class in com.thevoxelbox.voxelsniper">VoxelSniperPlugin</a></dt>
<dd>
<div class="block">Return the brush registry.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#getBrushSize()" class="member-name-link">getBrushSize()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getBrushSizeWarningThreshold()" class="member-name-link">getBrushSizeWarningThreshold()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Gets brush size warning threshold.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getBrushSizeWarningThreshold()" class="member-name-link">getBrushSizeWarningThreshold()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return maximum reasonable brush size before sending a warning.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/BlockPainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">BlockPainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CirclePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CirclePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/CubePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">CubePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/Painter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in interface com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/Painter.html" title="interface in com.thevoxelbox.voxelsniper.util.painter">Painter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SpherePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SpherePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html#getCenter()" class="member-name-link">getCenter()</a> - Method in class com.thevoxelbox.voxelsniper.util.painter.<a href="com/thevoxelbox/voxelsniper/util/painter/SquarePainter.html" title="class in com.thevoxelbox.voxelsniper.util.painter">SquarePainter</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html#getCommandManager()" class="member-name-link">getCommandManager()</a> - Method in class com.thevoxelbox.voxelsniper.command.<a href="com/thevoxelbox/voxelsniper/command/CommandRegistry.html" title="class in com.thevoxelbox.voxelsniper.command">CommandRegistry</a></dt>
<dd>
<div class="block">Return the command manager.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/VoxelSniperPlugin.html#getCommandRegistry()" class="member-name-link">getCommandRegistry()</a> - Method in class com.thevoxelbox.voxelsniper.<a href="com/thevoxelbox/voxelsniper/VoxelSniperPlugin.html" title="class in com.thevoxelbox.voxelsniper">VoxelSniperPlugin</a></dt>
<dd>
<div class="block">Return the command manager.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html#getCommandSender()" class="member-name-link">getCommandSender()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html" title="class in com.thevoxelbox.voxelsniper.sniper">Sniper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/SniperCommander.html#getCommandSender()" class="member-name-link">getCommandSender()</a> - Method in interface com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/SniperCommander.html" title="interface in com.thevoxelbox.voxelsniper.sniper">SniperCommander</a></dt>
<dd>
<div class="block">Return the command sender</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/SniperSender.html#getCommandSender()" class="member-name-link">getCommandSender()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/SniperSender.html" title="class in com.thevoxelbox.voxelsniper.sniper">SniperSender</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getConfigVersion()" class="member-name-link">getConfigVersion()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return current config version.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html#getCreator()" class="member-name-link">getCreator()</a> - Method in class com.thevoxelbox.voxelsniper.brush.property.<a href="com/thevoxelbox/voxelsniper/brush/property/BrushProperties.html" title="class in com.thevoxelbox.voxelsniper.brush.property">BrushProperties</a></dt>
<dd>
<div class="block">Gets the brush creator.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html#getCreator()" class="member-name-link">getCreator()</a> - Method in class com.thevoxelbox.voxelsniper.performer.property.<a href="com/thevoxelbox/voxelsniper/performer/property/PerformerProperties.html" title="class in com.thevoxelbox.voxelsniper.performer.property">PerformerProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html#getCurrentBrush()" class="member-name-link">getCurrentBrush()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">Toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html#getCurrentBrushProperties()" class="member-name-link">getCurrentBrushProperties()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/Toolkit.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">Toolkit</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html#getCurrentToolkit()" class="member-name-link">getCurrentToolkit()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.<a href="com/thevoxelbox/voxelsniper/sniper/Sniper.html" title="class in com.thevoxelbox.voxelsniper.sniper">Sniper</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html#getCylinderCenter()" class="member-name-link">getCylinderCenter()</a> - Method in class com.thevoxelbox.voxelsniper.sniper.toolkit.<a href="com/thevoxelbox/voxelsniper/sniper/toolkit/ToolkitProperties.html" title="class in com.thevoxelbox.voxelsniper.sniper.toolkit">ToolkitProperties</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getDefaultBlockMaterial()" class="member-name-link">getDefaultBlockMaterial()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return default block type</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getDefaultBlockMaterial()" class="member-name-link">getDefaultBlockMaterial()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return default block type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getDefaultBrushSize()" class="member-name-link">getDefaultBrushSize()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return default brush size.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getDefaultBrushSize()" class="member-name-link">getDefaultBrushSize()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return default brush size.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getDefaultCylinderCenter()" class="member-name-link">getDefaultCylinderCenter()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return default cylinder center.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getDefaultCylinderCenter()" class="member-name-link">getDefaultCylinderCenter()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return default cylinder center.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getDefaultReplaceBlockMaterial()" class="member-name-link">getDefaultReplaceBlockMaterial()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return default replace block type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getDefaultReplaceBlockMaterial()" class="member-name-link">getDefaultReplaceBlockMaterial()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return default replace block type.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html#getDefaultVoxelHeight()" class="member-name-link">getDefaultVoxelHeight()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfig.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfig</a></dt>
<dd>
<div class="block">Return default voxel height.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html#getDefaultVoxelHeight()" class="member-name-link">getDefaultVoxelHeight()</a> - Method in class com.thevoxelbox.voxelsniper.config.<a href="com/thevoxelbox/voxelsniper/config/VoxelSniperConfigLoader.html" title="class in com.thevoxelbox.voxelsniper.config">VoxelSniperConfigLoader</a></dt>
<dd>
<div class="block">Return default voxel height.</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getDirection(com.sk89q.worldedit.math.BlockVector3,com.sk89q.worldedit.math.BlockVector3)" class="member-name-link">getDirection(BlockVector3, BlockVector3)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getDoubleProperty(java.lang.String,double)" class="member-name-link">getDoubleProperty(String, double)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getEditSession()" class="member-name-link">getEditSession()</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html#getEntityClassHierarchy(java.lang.Class)" class="member-name-link">getEntityClassHierarchy(Class<? extends Entity>)</a> - Static method in class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/EntityClassArgument.html" title="class in com.thevoxelbox.voxelsniper.command.argument">EntityClassArgument</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html#getEnumProperty(java.lang.String,java.lang.Class,java.lang.Enum)" class="member-name-link">getEnumProperty(String, Class<?>, Enum<?>)</a> - Method in class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/AbstractBrush.html" title="class in com.thevoxelbox.voxelsniper.brush.type">AbstractBrush</a></dt>
<dd> </dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#getErosionFaces()" class="member-name-link">getErosionFaces()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the erosion faces</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html#getErosionRecursions()" class="member-name-link">getErosionRecursions()</a> - Method in record class com.thevoxelbox.voxelsniper.brush.type.<a href="com/thevoxelbox/voxelsniper/brush/type/ErodeBrush.ErosionPreset.html" title="class in com.thevoxelbox.voxelsniper.brush.type">ErodeBrush.ErosionPreset</a></dt>
<dd>
<div class="block">Returns the erosion recursion</div>
</dd>
<dt><a href="com/thevoxelbox/voxelsniper/command/argument/VoxelCommandElementParseException.html#getErrorMessage()" class="member-name-link">getErrorMessage()</a> - Method in exception class com.thevoxelbox.voxelsniper.command.argument.<a href="com/thevoxelbox/voxelsniper/command/argument/VoxelCommandElementParseException.html" title="class in com.thevoxelbox.voxelsniper.command.argument">VoxelCommandElementParseException</a></dt>
<dd>
<div class="block">Return the error message.</div>
</dd>