diff --git a/README.md b/README.md index 1ef3e8e7..cfa03dc8 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,16 @@ A utility to reduce boilerplate code in Bukkit plugins. It gets boring writing t ### Modules ##### [`helper`](https://github.com/lucko/helper/tree/master/helper): The main helper project -[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper/target/helper.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](#helper) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper/) +[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper/target/helper.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](https://github.com/lucko/helper#helperr) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper/javadoc/helper/) ##### [`helper-sql`](https://github.com/lucko/helper/tree/master/helper-sql): Provides SQL datasources using HikariCP. -[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-sql/target/helper-sql.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](#helper-sql) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper-sql/) +[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-sql/target/helper-sql.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](https://github.com/lucko/helper#helper-sql) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper/javadoc/helper-sql/) ##### [`helper-redis`](https://github.com/lucko/helper/tree/master/helper-redis): Provides Redis clients and implements the helper Messaging system using Jedis. -[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-redis/target/helper-redis.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](#helper-redis) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper-redis/) +[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-redis/target/helper-redis.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](https://github.com/lucko/helper#helper-redis) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper/javadoc/helper-redis/) ##### [`helper-mongo`](https://github.com/lucko/helper/tree/master/helper-mongo): Provides MongoDB datasources. -[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-mongo/target/helper-mongo.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](#helper-mongo) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper-mongo/) +[![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-mongo/target/helper-mongo.jar) [![Dependency Info](https://img.shields.io/badge/api-dependency_info-orange.svg)](https://github.com/lucko/helper#helper-mongo) [![JavaDoc](https://img.shields.io/badge/api-javadoc-blue.svg)](https://lucko.me/helper/javadoc/helper-mongo/) ##### [`helper-lilypad`](https://github.com/lucko/helper/tree/master/helper-lilypad): Implements the helper Messaging system using LilyPad. [![Artifact](https://img.shields.io/badge/build-artifact-green.svg)](https://ci.lucko.me/job/helper/lastSuccessfulBuild/artifact/helper-lilypad/target/helper-lilypad.jar) diff --git a/docs/_config.yml b/docs/_config.yml index 18854876..c4192631 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1 +1 @@ -theme: jekyll-theme-midnight \ No newline at end of file +theme: jekyll-theme-cayman \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index ee3b41c8..2383ae09 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,5 +1,4 @@ # helper [![Build Status](https://ci.lucko.me/job/helper/badge/icon)](https://ci.lucko.me/job/helper/) -A utility to reduce boilerplate code in Bukkit plugins. It gets boring writing the same old stuff again and again. :) ### Modules ##### [`helper`](https://github.com/lucko/helper/tree/master/helper): The main helper project @@ -40,7 +39,7 @@ A utility to reduce boilerplate code in Bukkit plugins. It gets boring writing t ## Features -### [`Events`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/Events.java) +### Events helper adds a functional event handling utility. It allows you to dynamically register event listeners on the fly, without having to break out of logic, or define listeners as their own method. Instead of *implementing Listener*, creating a *new method* annotated with *@EventHandler*, and *registering* your listener with the plugin manager, with helper, you can subscribe to an event with one simple line of code. This allows you to define multiple listeners in the same class, and register then selectively. @@ -108,7 +107,7 @@ Events.subscribe(PlayerInteractEvent.class) ``` -### [`Scheduler`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/Scheduler.java) +### Scheduler The scheduler class provides easy static access to the Bukkit Scheduler. All future methods return `CompletableFuture`s, allowing for easy use of callbacks and use of the Completion Stage API. It also exposes asynchronous and synchronous `Executor` instances. @@ -152,7 +151,7 @@ Scheduler.callAsync(() -> { ``` -### [`Metadata`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/metadata) +### Metadata helper provides an alternate system to the Bukkit Metadata API. The main benefits over Bukkit are the use of generic types and automatically expiring, weak or soft values. The metadata API can be easily integrated with the Event system, thanks to some default filters. @@ -223,7 +222,7 @@ Events.subscribe(PlayerDeathEvent.class) Unlike Bukkit's system, metadata will be removed automatically when a player leaves the server, meaning you need-not worry about creating accidental memory leaks from left over metadata. The API also supports attaching metadata to blocks, worlds and other entities. -### [`Messenger`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/messaging) +### Messenger helper provides a Messenger abstraction utility, which consists of a few key classes. * [`Messenger`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/messaging/Messenger.java) - an object which manages messaging Channels @@ -284,7 +283,7 @@ public class GlobalMessengerPlugin extends ExtendedJavaPlugin { You can either integrate messenger into your own existing messaging system (using [`AbstractMessenger`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/messaging/AbstractMessenger.java), or, use **helper-redis**, which implements Messenger using Jedis and the Redis PubSub system. -### [`Commands`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/Commands.java) +### Commands helper provides a very simple command abstraction, designed to reduce some of the boilerplate needed when writing simple commands. It doesn't have support for automatic argument parsing, sub commands, or anything like that. It's only purpose is removing the bloat from writing simple commands. @@ -340,7 +339,7 @@ Commands.create() ``` -### [`Scoreboard`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/scoreboard) +### Scoreboard helper includes a thread safe scoreboard system, allowing you to easily setup & update custom teams and objectives. It is written directly at the packet level, meaning it can be safely used from asynchronous tasks. For example.... @@ -380,7 +379,7 @@ Scheduler.runTaskRepeatingAsync(() -> { ``` -### [`GUI`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/menu/Gui.java) +### GUI helper provides a highly adaptable and flexible GUI abstraction class. All you have to do is extend `Gui` and override the `#redraw` method. @@ -466,7 +465,7 @@ The GUI class also provides a number of methods which allow you to * Create automatically paginated views in a "dictionary" style -### [`Menu Scheming`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/menu/scheme) +### Menu Scheming MenuScheme allows you to easily apply layouts to GUIs without having to think about slot ids. ```java @Override @@ -509,7 +508,7 @@ public void redraw() { ``` -### [`Plugin Annotations`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/plugin/ap/Plugin.java) +### Plugin Annotations With helper, you can automagically create the standard `plugin.yml` files at compile time using annotation processing. Simply annotate your main class with `@Plugin` and fill in the name and version. The processor will take care of the rest! @@ -540,7 +539,7 @@ public class MyPlugin extends JavaPlugin { ``` -### [`Maven Annotations`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/maven/MavenLibrary.java) +### Maven Annotations helper includes a system which allows you to magically download dependencies for your plugins at runtime. This means you don't have to shade MBs of libraries into your jar. It's as simple as adding an annotation to your plugins class. @@ -561,7 +560,7 @@ public class ExamplePlugin extends JavaPlugin { ``` -### [`Terminables`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/terminable) +### Terminables Terminables are a way to easily cleanup active objects in plugins when a shutdown or reset is needed. The system consists of a few key interfaces. @@ -616,7 +615,7 @@ public class DemoPlugin extends ExtendedJavaPlugin { } ``` -### [`Serialization`](https://github.com/lucko/helper/tree/master/helper/src/main/java/me/lucko/helper/serialize) +### Serialization helper provides a few classes with are useful when trying to serialize plugin data. It makes use of Google's GSON to convert from Java Objects to JSON. * [`Position`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/serialize/Position.java) - similar to Bukkit's location, but without pitch/yaw @@ -689,7 +688,7 @@ gsonHandler.save(ImmutableList.of("some key", "some value")); ``` -### [`Bungee Messaging`](https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/messaging/bungee/BungeeMessaging.java) +### Bungee Messaging helper provides a wrapper class for the BungeeCord Plugin Messaging API, providing callbacks to read response data. It handles the messaging channels behind the scenes and simply runs the provided callback when the data is returned. diff --git a/docs/javadoc/helper-mongo/allclasses-frame.html b/docs/javadoc/helper-mongo/allclasses-frame.html new file mode 100644 index 00000000..4c3d3856 --- /dev/null +++ b/docs/javadoc/helper-mongo/allclasses-frame.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-mongo 1.0.1 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-mongo/allclasses-noframe.html b/docs/javadoc/helper-mongo/allclasses-noframe.html new file mode 100644 index 00000000..51a0c22d --- /dev/null +++ b/docs/javadoc/helper-mongo/allclasses-noframe.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-mongo 1.0.1 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-mongo/constant-values.html b/docs/javadoc/helper-mongo/constant-values.html new file mode 100644 index 00000000..c6241448 --- /dev/null +++ b/docs/javadoc/helper-mongo/constant-values.html @@ -0,0 +1,126 @@ + + + + + + +Constant Field Values (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Constant Field Values

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/deprecated-list.html b/docs/javadoc/helper-mongo/deprecated-list.html new file mode 100644 index 00000000..01bf0456 --- /dev/null +++ b/docs/javadoc/helper-mongo/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/help-doc.html b/docs/javadoc/helper-mongo/help-doc.html new file mode 100644 index 00000000..b8d1861b --- /dev/null +++ b/docs/javadoc/helper-mongo/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/index-all.html b/docs/javadoc/helper-mongo/index-all.html new file mode 100644 index 00000000..44309119 --- /dev/null +++ b/docs/javadoc/helper-mongo/index-all.html @@ -0,0 +1,275 @@ + + + + + + +Index (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
E F G H M O T U  + + +

E

+
+
enable() - Method in class me.lucko.helper.mongo.plugin.MongoPlugin
+
 
+
equals(Object) - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
+ + + +

F

+
+
fromConfig(ConfigurationSection) - Static method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
+ + + +

G

+
+
getAddress() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
getClient() - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets the client instance backing the datasource
+
+
getClient() - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getDatabase() - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets the main database in use by the instance.
+
+
getDatabase(String) - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets a specific database instance
+
+
getDatabase() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
getDatabase() - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getDatabase(String) - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getDataSource() - Method in interface me.lucko.helper.mongo.MongoProvider
+
+
Gets the global datasource.
+
+
getDataSource(MongoDatabaseCredentials) - Method in interface me.lucko.helper.mongo.MongoProvider
+
+
Constructs a new datasource using the given credentials.
+
+
getDataSource() - Method in class me.lucko.helper.mongo.plugin.MongoPlugin
+
 
+
getDataSource(MongoDatabaseCredentials) - Method in class me.lucko.helper.mongo.plugin.MongoPlugin
+
 
+
getGlobalCredentials() - Method in interface me.lucko.helper.mongo.MongoProvider
+
+
Gets the global database credentials being used for the global datasource.
+
+
getGlobalCredentials() - Method in class me.lucko.helper.mongo.plugin.MongoPlugin
+
 
+
getMorphia() - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets the Morphia instance for this datasource
+
+
getMorphia() - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getMorphiaDatastore() - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets the main Morphia datastore in use by the instance
+
+
getMorphiaDatastore(String) - Method in interface me.lucko.helper.mongo.HelperMongo
+
+
Gets a specific Morphia datastore instance
+
+
getMorphiaDatastore() - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getMorphiaDatastore(String) - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
getPassword() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
getPort() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
getUsername() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
+ + + +

H

+
+
hashCode() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
HelperMongo - Interface in me.lucko.helper.mongo
+
+
Represents an individual Mongo datasource, created by the library.
+
+
+ + + +

M

+
+
me.lucko.helper.mongo - package me.lucko.helper.mongo
+
 
+
me.lucko.helper.mongo.plugin - package me.lucko.helper.mongo.plugin
+
 
+
MongoDatabaseCredentials - Class in me.lucko.helper.mongo
+
+
Represents the credentials for a remote database.
+
+
MongoPlugin - Class in me.lucko.helper.mongo.plugin
+
 
+
MongoPlugin() - Constructor for class me.lucko.helper.mongo.plugin.MongoPlugin
+
 
+
MongoProvider - Interface in me.lucko.helper.mongo
+
+
Provides HelperMongo instances.
+
+
MongoWrapper - Class in me.lucko.helper.mongo.plugin
+
 
+
MongoWrapper(MongoDatabaseCredentials) - Constructor for class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
+ + + +

O

+
+
of(String, int, String, String, String) - Static method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
+ + + +

T

+
+
terminate() - Method in class me.lucko.helper.mongo.plugin.MongoWrapper
+
 
+
toString() - Method in class me.lucko.helper.mongo.MongoDatabaseCredentials
+
 
+
+ + + +

U

+
+
usingMongoDb(MongoDatabaseCredentials) - Static method in interface me.lucko.helper.mongo.HelperMongo
+
 
+
+E F G H M O T U 
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/index.html b/docs/javadoc/helper-mongo/index.html new file mode 100644 index 00000000..8da5b6ce --- /dev/null +++ b/docs/javadoc/helper-mongo/index.html @@ -0,0 +1,76 @@ + + + + + + +helper-mongo 1.0.1 API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/HelperMongo.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/HelperMongo.html new file mode 100644 index 00000000..61dea346 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/HelperMongo.html @@ -0,0 +1,383 @@ + + + + + + +HelperMongo (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.mongo
+

Interface HelperMongo

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoDatabaseCredentials.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoDatabaseCredentials.html new file mode 100644 index 00000000..1d6a16d7 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoDatabaseCredentials.html @@ -0,0 +1,388 @@ + + + + + + +MongoDatabaseCredentials (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.mongo
+

Class MongoDatabaseCredentials

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoProvider.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoProvider.html new file mode 100644 index 00000000..263eab18 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/MongoProvider.html @@ -0,0 +1,284 @@ + + + + + + +MongoProvider (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.mongo
+

Interface MongoProvider

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/HelperMongo.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/HelperMongo.html new file mode 100644 index 00000000..3ed139e1 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/HelperMongo.html @@ -0,0 +1,217 @@ + + + + + + +Uses of Interface me.lucko.helper.mongo.HelperMongo (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.mongo.HelperMongo

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoDatabaseCredentials.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoDatabaseCredentials.html new file mode 100644 index 00000000..a7efc6dc --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoDatabaseCredentials.html @@ -0,0 +1,245 @@ + + + + + + +Uses of Class me.lucko.helper.mongo.MongoDatabaseCredentials (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.mongo.MongoDatabaseCredentials

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoProvider.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoProvider.html new file mode 100644 index 00000000..462f832f --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/class-use/MongoProvider.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface me.lucko.helper.mongo.MongoProvider (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.mongo.MongoProvider

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-frame.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-frame.html new file mode 100644 index 00000000..789847ce --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +me.lucko.helper.mongo (helper-mongo 1.0.1 API) + + + + + +

me.lucko.helper.mongo

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-summary.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-summary.html new file mode 100644 index 00000000..0c789a8a --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-summary.html @@ -0,0 +1,169 @@ + + + + + + +me.lucko.helper.mongo (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.mongo

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-tree.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-tree.html new file mode 100644 index 00000000..da20d79d --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-tree.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.mongo Class Hierarchy (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.mongo

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-use.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-use.html new file mode 100644 index 00000000..32c1b3b3 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/package-use.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Package me.lucko.helper.mongo (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.mongo

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoPlugin.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoPlugin.html new file mode 100644 index 00000000..ab137252 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoPlugin.html @@ -0,0 +1,396 @@ + + + + + + +MongoPlugin (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.mongo.plugin
+

Class MongoPlugin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoWrapper.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoWrapper.html new file mode 100644 index 00000000..396918ef --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/MongoWrapper.html @@ -0,0 +1,456 @@ + + + + + + +MongoWrapper (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.mongo.plugin
+

Class MongoWrapper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoPlugin.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoPlugin.html new file mode 100644 index 00000000..01c3bd73 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoPlugin.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.mongo.plugin.MongoPlugin (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.mongo.plugin.MongoPlugin

+
+
No usage of me.lucko.helper.mongo.plugin.MongoPlugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoWrapper.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoWrapper.html new file mode 100644 index 00000000..4815f8ef --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/class-use/MongoWrapper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.mongo.plugin.MongoWrapper (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.mongo.plugin.MongoWrapper

+
+
No usage of me.lucko.helper.mongo.plugin.MongoWrapper
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-frame.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-frame.html new file mode 100644 index 00000000..c6a3ad72 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.mongo.plugin (helper-mongo 1.0.1 API) + + + + + +

me.lucko.helper.mongo.plugin

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-summary.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-summary.html new file mode 100644 index 00000000..681bf4f0 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.mongo.plugin (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.mongo.plugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-tree.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-tree.html new file mode 100644 index 00000000..d8a38bc1 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +me.lucko.helper.mongo.plugin Class Hierarchy (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.mongo.plugin

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-use.html b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-use.html new file mode 100644 index 00000000..2ccd2d67 --- /dev/null +++ b/docs/javadoc/helper-mongo/me/lucko/helper/mongo/plugin/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.mongo.plugin (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.mongo.plugin

+
+
No usage of me.lucko.helper.mongo.plugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/overview-frame.html b/docs/javadoc/helper-mongo/overview-frame.html new file mode 100644 index 00000000..6e6f39b4 --- /dev/null +++ b/docs/javadoc/helper-mongo/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (helper-mongo 1.0.1 API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/docs/javadoc/helper-mongo/overview-summary.html b/docs/javadoc/helper-mongo/overview-summary.html new file mode 100644 index 00000000..730ee57d --- /dev/null +++ b/docs/javadoc/helper-mongo/overview-summary.html @@ -0,0 +1,144 @@ + + + + + + +Overview (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

helper-mongo 1.0.1 API

+
+
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
me.lucko.helper.mongo 
me.lucko.helper.mongo.plugin 
+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/overview-tree.html b/docs/javadoc/helper-mongo/overview-tree.html new file mode 100644 index 00000000..b6e3e896 --- /dev/null +++ b/docs/javadoc/helper-mongo/overview-tree.html @@ -0,0 +1,163 @@ + + + + + + +Class Hierarchy (helper-mongo 1.0.1 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-mongo/package-list b/docs/javadoc/helper-mongo/package-list new file mode 100644 index 00000000..046ef036 --- /dev/null +++ b/docs/javadoc/helper-mongo/package-list @@ -0,0 +1,2 @@ +me.lucko.helper.mongo +me.lucko.helper.mongo.plugin diff --git a/docs/javadoc/helper-mongo/resources/fonts/dejavu.css b/docs/javadoc/helper-mongo/resources/fonts/dejavu.css new file mode 100644 index 00000000..82b867f5 --- /dev/null +++ b/docs/javadoc/helper-mongo/resources/fonts/dejavu.css @@ -0,0 +1 @@ +h1{font-family:"Dejavu Sans";font-size:24px;font-style:normal;font-variant:normal;font-weight:500;line-height:26.4px;}h3{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:500;line-height:15.4px;}p{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:400;line-height:20px;}blockquote{font-family:"Dejavu Sans";font-size:21px;font-style:normal;font-variant:normal;font-weight:400;line-height:30px;}pre{font-family:"Dejavu Sans";font-size:13px;font-style:normal;font-variant:normal;font-weight:400;line-height:18.5714px;} diff --git a/docs/javadoc/helper-mongo/script.js b/docs/javadoc/helper-mongo/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/docs/javadoc/helper-mongo/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/javadoc/helper-mongo/stylesheet.css b/docs/javadoc/helper-mongo/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/docs/javadoc/helper-mongo/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/javadoc/helper-redis/allclasses-frame.html b/docs/javadoc/helper-redis/allclasses-frame.html new file mode 100644 index 00000000..e0c28849 --- /dev/null +++ b/docs/javadoc/helper-redis/allclasses-frame.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-redis 1.0.4 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-redis/allclasses-noframe.html b/docs/javadoc/helper-redis/allclasses-noframe.html new file mode 100644 index 00000000..cd9bc68b --- /dev/null +++ b/docs/javadoc/helper-redis/allclasses-noframe.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-redis 1.0.4 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-redis/constant-values.html b/docs/javadoc/helper-redis/constant-values.html new file mode 100644 index 00000000..a5dfbd0b --- /dev/null +++ b/docs/javadoc/helper-redis/constant-values.html @@ -0,0 +1,126 @@ + + + + + + +Constant Field Values (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Constant Field Values

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/deprecated-list.html b/docs/javadoc/helper-redis/deprecated-list.html new file mode 100644 index 00000000..37f31d3e --- /dev/null +++ b/docs/javadoc/helper-redis/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/help-doc.html b/docs/javadoc/helper-redis/help-doc.html new file mode 100644 index 00000000..2e1bcd92 --- /dev/null +++ b/docs/javadoc/helper-redis/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/index-all.html b/docs/javadoc/helper-redis/index-all.html new file mode 100644 index 00000000..d143cf94 --- /dev/null +++ b/docs/javadoc/helper-redis/index-all.html @@ -0,0 +1,263 @@ + + + + + + +Index (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
E F G H J M O R T U  + + +

E

+
+
enable() - Method in class me.lucko.helper.redis.plugin.RedisPlugin
+
 
+
equals(Object) - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
+ + + +

F

+
+
fromConfig(ConfigurationSection) - Static method in class me.lucko.helper.redis.RedisCredentials
+
 
+
+ + + +

G

+
+
getAddress() - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
getChannel(String, TypeToken<T>) - Method in class me.lucko.helper.redis.plugin.JedisWrapper
+
 
+
getGlobalCredentials() - Method in class me.lucko.helper.redis.plugin.RedisPlugin
+
 
+
getGlobalCredentials() - Method in interface me.lucko.helper.redis.RedisProvider
+
+
Gets the global redis credentials being used for the global redis instance.
+
+
getJedis() - Method in interface me.lucko.helper.redis.HelperRedis
+
+
Gets a Jedis instance from the JedisPool.
+
+
getJedis() - Method in class me.lucko.helper.redis.plugin.JedisWrapper
+
 
+
getJedisPool() - Method in interface me.lucko.helper.redis.HelperRedis
+
+
Gets the JedisPool instance backing the redis instance
+
+
getJedisPool() - Method in class me.lucko.helper.redis.plugin.JedisWrapper
+
 
+
getPassword() - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
getPort() - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
getRedis() - Method in class me.lucko.helper.redis.plugin.RedisPlugin
+
 
+
getRedis(RedisCredentials) - Method in class me.lucko.helper.redis.plugin.RedisPlugin
+
 
+
getRedis() - Method in interface me.lucko.helper.redis.RedisProvider
+
+
Gets the global redis instance.
+
+
getRedis(RedisCredentials) - Method in interface me.lucko.helper.redis.RedisProvider
+
+
Constructs a new redis instance using the given credentials.
+
+
+ + + +

H

+
+
hashCode() - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
HelperRedis - Interface in me.lucko.helper.redis
+
+
Represents an individual redis instance, created by the library.
+
+
+ + + +

J

+
+
JedisWrapper - Class in me.lucko.helper.redis.plugin
+
 
+
JedisWrapper(RedisCredentials) - Constructor for class me.lucko.helper.redis.plugin.JedisWrapper
+
 
+
+ + + +

M

+
+
me.lucko.helper.redis - package me.lucko.helper.redis
+
 
+
me.lucko.helper.redis.plugin - package me.lucko.helper.redis.plugin
+
 
+
+ + + +

O

+
+
of(String, int, String) - Static method in class me.lucko.helper.redis.RedisCredentials
+
 
+
of(String, int) - Static method in class me.lucko.helper.redis.RedisCredentials
+
 
+
+ + + +

R

+
+
RedisCredentials - Class in me.lucko.helper.redis
+
+
Represents the credentials for a remote redis instance.
+
+
RedisPlugin - Class in me.lucko.helper.redis.plugin
+
 
+
RedisPlugin() - Constructor for class me.lucko.helper.redis.plugin.RedisPlugin
+
 
+
RedisProvider - Interface in me.lucko.helper.redis
+
+
Provides HelperRedis instances.
+
+
+ + + +

T

+
+
terminate() - Method in class me.lucko.helper.redis.plugin.JedisWrapper
+
 
+
toString() - Method in class me.lucko.helper.redis.RedisCredentials
+
 
+
+ + + +

U

+
+
usingJedis(RedisCredentials) - Static method in interface me.lucko.helper.redis.HelperRedis
+
 
+
+E F G H J M O R T U 
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/index.html b/docs/javadoc/helper-redis/index.html new file mode 100644 index 00000000..017fe56b --- /dev/null +++ b/docs/javadoc/helper-redis/index.html @@ -0,0 +1,76 @@ + + + + + + +helper-redis 1.0.4 API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/HelperRedis.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/HelperRedis.html new file mode 100644 index 00000000..b58b29e5 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/HelperRedis.html @@ -0,0 +1,306 @@ + + + + + + +HelperRedis (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.redis
+

Interface HelperRedis

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisCredentials.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisCredentials.html new file mode 100644 index 00000000..5bd1deaf --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisCredentials.html @@ -0,0 +1,368 @@ + + + + + + +RedisCredentials (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.redis
+

Class RedisCredentials

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisProvider.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisProvider.html new file mode 100644 index 00000000..8466cab0 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/RedisProvider.html @@ -0,0 +1,284 @@ + + + + + + +RedisProvider (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.redis
+

Interface RedisProvider

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/HelperRedis.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/HelperRedis.html new file mode 100644 index 00000000..19964f32 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/HelperRedis.html @@ -0,0 +1,217 @@ + + + + + + +Uses of Interface me.lucko.helper.redis.HelperRedis (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.redis.HelperRedis

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisCredentials.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisCredentials.html new file mode 100644 index 00000000..cde2a67a --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisCredentials.html @@ -0,0 +1,248 @@ + + + + + + +Uses of Class me.lucko.helper.redis.RedisCredentials (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.redis.RedisCredentials

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisProvider.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisProvider.html new file mode 100644 index 00000000..75778fe6 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/class-use/RedisProvider.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface me.lucko.helper.redis.RedisProvider (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.redis.RedisProvider

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/package-frame.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-frame.html new file mode 100644 index 00000000..2a267046 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +me.lucko.helper.redis (helper-redis 1.0.4 API) + + + + + +

me.lucko.helper.redis

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/package-summary.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-summary.html new file mode 100644 index 00000000..148fb024 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-summary.html @@ -0,0 +1,169 @@ + + + + + + +me.lucko.helper.redis (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.redis

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/package-tree.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-tree.html new file mode 100644 index 00000000..a553316a --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-tree.html @@ -0,0 +1,153 @@ + + + + + + +me.lucko.helper.redis Class Hierarchy (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.redis

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/package-use.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-use.html new file mode 100644 index 00000000..39f933c8 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/package-use.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Package me.lucko.helper.redis (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.redis

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/JedisWrapper.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/JedisWrapper.html new file mode 100644 index 00000000..4da631ff --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/JedisWrapper.html @@ -0,0 +1,389 @@ + + + + + + +JedisWrapper (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.redis.plugin
+

Class JedisWrapper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/RedisPlugin.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/RedisPlugin.html new file mode 100644 index 00000000..2523aae8 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/RedisPlugin.html @@ -0,0 +1,396 @@ + + + + + + +RedisPlugin (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.redis.plugin
+

Class RedisPlugin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/JedisWrapper.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/JedisWrapper.html new file mode 100644 index 00000000..03c689de --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/JedisWrapper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.redis.plugin.JedisWrapper (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.redis.plugin.JedisWrapper

+
+
No usage of me.lucko.helper.redis.plugin.JedisWrapper
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/RedisPlugin.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/RedisPlugin.html new file mode 100644 index 00000000..044c938a --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/class-use/RedisPlugin.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.redis.plugin.RedisPlugin (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.redis.plugin.RedisPlugin

+
+
No usage of me.lucko.helper.redis.plugin.RedisPlugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-frame.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-frame.html new file mode 100644 index 00000000..283b9885 --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.redis.plugin (helper-redis 1.0.4 API) + + + + + +

me.lucko.helper.redis.plugin

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-summary.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-summary.html new file mode 100644 index 00000000..3341b7bf --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.redis.plugin (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.redis.plugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-tree.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-tree.html new file mode 100644 index 00000000..d9a785cc --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +me.lucko.helper.redis.plugin Class Hierarchy (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.redis.plugin

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-use.html b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-use.html new file mode 100644 index 00000000..cbb744bf --- /dev/null +++ b/docs/javadoc/helper-redis/me/lucko/helper/redis/plugin/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.redis.plugin (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.redis.plugin

+
+
No usage of me.lucko.helper.redis.plugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/overview-frame.html b/docs/javadoc/helper-redis/overview-frame.html new file mode 100644 index 00000000..0b8890c8 --- /dev/null +++ b/docs/javadoc/helper-redis/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (helper-redis 1.0.4 API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/docs/javadoc/helper-redis/overview-summary.html b/docs/javadoc/helper-redis/overview-summary.html new file mode 100644 index 00000000..bf84a49d --- /dev/null +++ b/docs/javadoc/helper-redis/overview-summary.html @@ -0,0 +1,144 @@ + + + + + + +Overview (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

helper-redis 1.0.4 API

+
+
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
me.lucko.helper.redis 
me.lucko.helper.redis.plugin 
+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/overview-tree.html b/docs/javadoc/helper-redis/overview-tree.html new file mode 100644 index 00000000..dff4bd82 --- /dev/null +++ b/docs/javadoc/helper-redis/overview-tree.html @@ -0,0 +1,168 @@ + + + + + + +Class Hierarchy (helper-redis 1.0.4 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-redis/package-list b/docs/javadoc/helper-redis/package-list new file mode 100644 index 00000000..730ba2ed --- /dev/null +++ b/docs/javadoc/helper-redis/package-list @@ -0,0 +1,2 @@ +me.lucko.helper.redis +me.lucko.helper.redis.plugin diff --git a/docs/javadoc/helper-redis/resources/fonts/dejavu.css b/docs/javadoc/helper-redis/resources/fonts/dejavu.css new file mode 100644 index 00000000..82b867f5 --- /dev/null +++ b/docs/javadoc/helper-redis/resources/fonts/dejavu.css @@ -0,0 +1 @@ +h1{font-family:"Dejavu Sans";font-size:24px;font-style:normal;font-variant:normal;font-weight:500;line-height:26.4px;}h3{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:500;line-height:15.4px;}p{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:400;line-height:20px;}blockquote{font-family:"Dejavu Sans";font-size:21px;font-style:normal;font-variant:normal;font-weight:400;line-height:30px;}pre{font-family:"Dejavu Sans";font-size:13px;font-style:normal;font-variant:normal;font-weight:400;line-height:18.5714px;} diff --git a/docs/javadoc/helper-redis/script.js b/docs/javadoc/helper-redis/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/docs/javadoc/helper-redis/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/javadoc/helper-redis/stylesheet.css b/docs/javadoc/helper-redis/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/docs/javadoc/helper-redis/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/javadoc/helper-sql/allclasses-frame.html b/docs/javadoc/helper-sql/allclasses-frame.html new file mode 100644 index 00000000..59688252 --- /dev/null +++ b/docs/javadoc/helper-sql/allclasses-frame.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-sql 1.0.3 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-sql/allclasses-noframe.html b/docs/javadoc/helper-sql/allclasses-noframe.html new file mode 100644 index 00000000..834e2328 --- /dev/null +++ b/docs/javadoc/helper-sql/allclasses-noframe.html @@ -0,0 +1,24 @@ + + + + + + +All Classes (helper-sql 1.0.3 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper-sql/constant-values.html b/docs/javadoc/helper-sql/constant-values.html new file mode 100644 index 00000000..543d22ca --- /dev/null +++ b/docs/javadoc/helper-sql/constant-values.html @@ -0,0 +1,126 @@ + + + + + + +Constant Field Values (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Constant Field Values

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/deprecated-list.html b/docs/javadoc/helper-sql/deprecated-list.html new file mode 100644 index 00000000..220f8d7b --- /dev/null +++ b/docs/javadoc/helper-sql/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/help-doc.html b/docs/javadoc/helper-sql/help-doc.html new file mode 100644 index 00000000..c1e5853f --- /dev/null +++ b/docs/javadoc/helper-sql/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/index-all.html b/docs/javadoc/helper-sql/index-all.html new file mode 100644 index 00000000..23242f42 --- /dev/null +++ b/docs/javadoc/helper-sql/index-all.html @@ -0,0 +1,263 @@ + + + + + + +Index (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
D E F G H M O S T U  + + +

D

+
+
DatabaseCredentials - Class in me.lucko.helper.sql
+
+
Represents the credentials for a remote database.
+
+
+ + + +

E

+
+
enable() - Method in class me.lucko.helper.sql.plugin.SqlPlugin
+
 
+
equals(Object) - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
+ + + +

F

+
+
fromConfig(ConfigurationSection) - Static method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
+ + + +

G

+
+
getAddress() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
getConnection() - Method in interface me.lucko.helper.sql.HelperDataSource
+
+
Gets a connection from the datasource.
+
+
getConnection() - Method in class me.lucko.helper.sql.plugin.HikariWrapper
+
 
+
getDatabase() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
getDataSource() - Method in class me.lucko.helper.sql.plugin.SqlPlugin
+
 
+
getDataSource(DatabaseCredentials) - Method in class me.lucko.helper.sql.plugin.SqlPlugin
+
 
+
getDataSource() - Method in interface me.lucko.helper.sql.SqlProvider
+
+
Gets the global datasource.
+
+
getDataSource(DatabaseCredentials) - Method in interface me.lucko.helper.sql.SqlProvider
+
+
Constructs a new datasource using the given credentials.
+
+
getGlobalCredentials() - Method in class me.lucko.helper.sql.plugin.SqlPlugin
+
 
+
getGlobalCredentials() - Method in interface me.lucko.helper.sql.SqlProvider
+
+
Gets the global database credentials being used for the global datasource.
+
+
getHikari() - Method in interface me.lucko.helper.sql.HelperDataSource
+
+
Gets the Hikari instance backing the datasource
+
+
getHikari() - Method in class me.lucko.helper.sql.plugin.HikariWrapper
+
 
+
getPassword() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
getPort() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
getUsername() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
+ + + +

H

+
+
hashCode() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
HelperDataSource - Interface in me.lucko.helper.sql
+
+
Represents an individual datasource, created by the library.
+
+
HikariWrapper - Class in me.lucko.helper.sql.plugin
+
 
+
HikariWrapper(DatabaseCredentials) - Constructor for class me.lucko.helper.sql.plugin.HikariWrapper
+
 
+
+ + + +

M

+
+
me.lucko.helper.sql - package me.lucko.helper.sql
+
 
+
me.lucko.helper.sql.plugin - package me.lucko.helper.sql.plugin
+
 
+
+ + + +

O

+
+
of(String, int, String, String, String) - Static method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
+ + + +

S

+
+
SqlPlugin - Class in me.lucko.helper.sql.plugin
+
 
+
SqlPlugin() - Constructor for class me.lucko.helper.sql.plugin.SqlPlugin
+
 
+
SqlProvider - Interface in me.lucko.helper.sql
+
+
Provides HelperDataSource instances.
+
+
+ + + +

T

+
+
terminate() - Method in class me.lucko.helper.sql.plugin.HikariWrapper
+
 
+
toString() - Method in class me.lucko.helper.sql.DatabaseCredentials
+
 
+
+ + + +

U

+
+
usingHikari(DatabaseCredentials) - Static method in interface me.lucko.helper.sql.HelperDataSource
+
 
+
+D E F G H M O S T U 
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/index.html b/docs/javadoc/helper-sql/index.html new file mode 100644 index 00000000..4b4db037 --- /dev/null +++ b/docs/javadoc/helper-sql/index.html @@ -0,0 +1,76 @@ + + + + + + +helper-sql 1.0.3 API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/DatabaseCredentials.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/DatabaseCredentials.html new file mode 100644 index 00000000..7aacdac1 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/DatabaseCredentials.html @@ -0,0 +1,388 @@ + + + + + + +DatabaseCredentials (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.sql
+

Class DatabaseCredentials

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/HelperDataSource.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/HelperDataSource.html new file mode 100644 index 00000000..f561b641 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/HelperDataSource.html @@ -0,0 +1,304 @@ + + + + + + +HelperDataSource (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.sql
+

Interface HelperDataSource

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/SqlProvider.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/SqlProvider.html new file mode 100644 index 00000000..081da88e --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/SqlProvider.html @@ -0,0 +1,284 @@ + + + + + + +SqlProvider (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.sql
+

Interface SqlProvider

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/DatabaseCredentials.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/DatabaseCredentials.html new file mode 100644 index 00000000..40aff0d3 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/DatabaseCredentials.html @@ -0,0 +1,245 @@ + + + + + + +Uses of Class me.lucko.helper.sql.DatabaseCredentials (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.sql.DatabaseCredentials

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/HelperDataSource.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/HelperDataSource.html new file mode 100644 index 00000000..de857575 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/HelperDataSource.html @@ -0,0 +1,217 @@ + + + + + + +Uses of Interface me.lucko.helper.sql.HelperDataSource (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.sql.HelperDataSource

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/SqlProvider.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/SqlProvider.html new file mode 100644 index 00000000..63c75c30 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/class-use/SqlProvider.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface me.lucko.helper.sql.SqlProvider (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.sql.SqlProvider

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/package-frame.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-frame.html new file mode 100644 index 00000000..1bba9ce0 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +me.lucko.helper.sql (helper-sql 1.0.3 API) + + + + + +

me.lucko.helper.sql

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/package-summary.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-summary.html new file mode 100644 index 00000000..cc144a1a --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-summary.html @@ -0,0 +1,169 @@ + + + + + + +me.lucko.helper.sql (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.sql

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/package-tree.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-tree.html new file mode 100644 index 00000000..1054aef1 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-tree.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.sql Class Hierarchy (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.sql

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/package-use.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-use.html new file mode 100644 index 00000000..d37e41b6 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/package-use.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Package me.lucko.helper.sql (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.sql

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/HikariWrapper.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/HikariWrapper.html new file mode 100644 index 00000000..01eecb51 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/HikariWrapper.html @@ -0,0 +1,365 @@ + + + + + + +HikariWrapper (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.sql.plugin
+

Class HikariWrapper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/SqlPlugin.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/SqlPlugin.html new file mode 100644 index 00000000..e45b3c66 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/SqlPlugin.html @@ -0,0 +1,399 @@ + + + + + + +SqlPlugin (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.sql.plugin
+

Class SqlPlugin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/HikariWrapper.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/HikariWrapper.html new file mode 100644 index 00000000..8f853d88 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/HikariWrapper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.sql.plugin.HikariWrapper (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.sql.plugin.HikariWrapper

+
+
No usage of me.lucko.helper.sql.plugin.HikariWrapper
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/SqlPlugin.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/SqlPlugin.html new file mode 100644 index 00000000..b720dbb0 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/class-use/SqlPlugin.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.sql.plugin.SqlPlugin (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.sql.plugin.SqlPlugin

+
+
No usage of me.lucko.helper.sql.plugin.SqlPlugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-frame.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-frame.html new file mode 100644 index 00000000..7f113fb7 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.sql.plugin (helper-sql 1.0.3 API) + + + + + +

me.lucko.helper.sql.plugin

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-summary.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-summary.html new file mode 100644 index 00000000..6a3a606b --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.sql.plugin (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.sql.plugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-tree.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-tree.html new file mode 100644 index 00000000..2c9b5ed3 --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +me.lucko.helper.sql.plugin Class Hierarchy (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.sql.plugin

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-use.html b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-use.html new file mode 100644 index 00000000..47c8a22e --- /dev/null +++ b/docs/javadoc/helper-sql/me/lucko/helper/sql/plugin/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.sql.plugin (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.sql.plugin

+
+
No usage of me.lucko.helper.sql.plugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/overview-frame.html b/docs/javadoc/helper-sql/overview-frame.html new file mode 100644 index 00000000..b31f9ce9 --- /dev/null +++ b/docs/javadoc/helper-sql/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (helper-sql 1.0.3 API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/docs/javadoc/helper-sql/overview-summary.html b/docs/javadoc/helper-sql/overview-summary.html new file mode 100644 index 00000000..b206d369 --- /dev/null +++ b/docs/javadoc/helper-sql/overview-summary.html @@ -0,0 +1,144 @@ + + + + + + +Overview (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

helper-sql 1.0.3 API

+
+
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
me.lucko.helper.sql 
me.lucko.helper.sql.plugin 
+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/overview-tree.html b/docs/javadoc/helper-sql/overview-tree.html new file mode 100644 index 00000000..da171acb --- /dev/null +++ b/docs/javadoc/helper-sql/overview-tree.html @@ -0,0 +1,163 @@ + + + + + + +Class Hierarchy (helper-sql 1.0.3 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper-sql/package-list b/docs/javadoc/helper-sql/package-list new file mode 100644 index 00000000..886e203d --- /dev/null +++ b/docs/javadoc/helper-sql/package-list @@ -0,0 +1,2 @@ +me.lucko.helper.sql +me.lucko.helper.sql.plugin diff --git a/docs/javadoc/helper-sql/resources/fonts/dejavu.css b/docs/javadoc/helper-sql/resources/fonts/dejavu.css new file mode 100644 index 00000000..82b867f5 --- /dev/null +++ b/docs/javadoc/helper-sql/resources/fonts/dejavu.css @@ -0,0 +1 @@ +h1{font-family:"Dejavu Sans";font-size:24px;font-style:normal;font-variant:normal;font-weight:500;line-height:26.4px;}h3{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:500;line-height:15.4px;}p{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:400;line-height:20px;}blockquote{font-family:"Dejavu Sans";font-size:21px;font-style:normal;font-variant:normal;font-weight:400;line-height:30px;}pre{font-family:"Dejavu Sans";font-size:13px;font-style:normal;font-variant:normal;font-weight:400;line-height:18.5714px;} diff --git a/docs/javadoc/helper-sql/script.js b/docs/javadoc/helper-sql/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/docs/javadoc/helper-sql/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/javadoc/helper-sql/stylesheet.css b/docs/javadoc/helper-sql/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/docs/javadoc/helper-sql/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/javadoc/helper/allclasses-frame.html b/docs/javadoc/helper/allclasses-frame.html new file mode 100644 index 00000000..afe3a5e7 --- /dev/null +++ b/docs/javadoc/helper/allclasses-frame.html @@ -0,0 +1,124 @@ + + + + + + +All Classes (helper 2.1.5 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper/allclasses-noframe.html b/docs/javadoc/helper/allclasses-noframe.html new file mode 100644 index 00000000..3ff66b85 --- /dev/null +++ b/docs/javadoc/helper/allclasses-noframe.html @@ -0,0 +1,124 @@ + + + + + + +All Classes (helper 2.1.5 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/javadoc/helper/constant-values.html b/docs/javadoc/helper/constant-values.html new file mode 100644 index 00000000..46d4240c --- /dev/null +++ b/docs/javadoc/helper/constant-values.html @@ -0,0 +1,183 @@ + + + + + + +Constant Field Values (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

me.lucko.*

+ + +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/deprecated-list.html b/docs/javadoc/helper/deprecated-list.html new file mode 100644 index 00000000..4431a33c --- /dev/null +++ b/docs/javadoc/helper/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/help-doc.html b/docs/javadoc/helper/help-doc.html new file mode 100644 index 00000000..403cb711 --- /dev/null +++ b/docs/javadoc/helper/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/index-all.html b/docs/javadoc/helper/index-all.html new file mode 100644 index 00000000..0d0d8342 --- /dev/null +++ b/docs/javadoc/helper/index-all.html @@ -0,0 +1,3453 @@ + + + + + + +Index (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
A B C D E F G H I J K L M N O P R S T U V W Z  + + +

A

+
+
AbstractMessenger - Class in me.lucko.helper.messaging
+
+
An abstract implementation of Messenger.
+
+
AbstractMessenger(BiConsumer<String, String>, Consumer<String>, Consumer<String>) - Constructor for class me.lucko.helper.messaging.AbstractMessenger
+
+
Creates a new abstract messenger
+
+
AbstractSchemeMapping - Class in me.lucko.helper.menu.scheme
+
+
Implements SchemeMapping using an immutable map.
+
+
accept(JsonElement) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
accept(Map.Entry<String, JsonElement>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
accept(String, JsonElement) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
accept(Item) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Places an item onto the Gui using the next available slot in the populator
+
+
acceptIfSpace(Item) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Places an item onto the Gui using the next available slot in the populator
+
+
add(JsonElement, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(JsonElement) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(GsonSerializable) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(String) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(Number) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(Boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(Character) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
add(String, JsonElement, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, JsonElement) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, GsonSerializable) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, String) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, Number) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, Boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(String, Character) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
add(Vector3i) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
add(int, int, int) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
add(Vector2i) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
add(int, int) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
add(double, double, double) - Method in class me.lucko.helper.serialize.Point
+
 
+
add(Vector3i) - Method in class me.lucko.helper.serialize.Position
+
 
+
add(Vector3d) - Method in class me.lucko.helper.serialize.Position
+
 
+
add(double, double, double) - Method in class me.lucko.helper.serialize.Position
+
 
+
addAll(Iterable<T>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addAll(Iterable<T>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addAll(Stream<T>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addAll(Stream<T>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addAll(Iterable<Map.Entry<String, T>>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAll(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAll(Stream<Map.Entry<String, T>>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAll(Stream<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAll(JsonObject, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAll(JsonObject) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllBooleans(Iterable<Map.Entry<String, Boolean>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllBooleansIfAbsent(Iterable<Map.Entry<String, Boolean>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllCharacters(Iterable<Map.Entry<String, Character>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllCharactersIfAbsent(Iterable<Map.Entry<String, Character>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(Iterable<Map.Entry<String, T>>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(Stream<Map.Entry<String, T>>, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(Stream<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(JsonObject, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllIfAbsent(JsonObject) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllNumbers(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllNumbersIfAbsent(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllSerializables(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllSerializablesIfAbsent(Iterable<Map.Entry<String, T>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllStrings(Iterable<Map.Entry<String, String>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addAllStringsIfAbsent(Iterable<Map.Entry<String, String>>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addBooleans(Iterable<Boolean>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addCharacters(Iterable<Character>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addIfAbsent(String, JsonElement, boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, JsonElement) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, GsonSerializable) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, String) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, Number) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, Boolean) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addIfAbsent(String, Character) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
addItem(Item) - Method in class me.lucko.helper.menu.Gui
+
 
+
addItems(Iterable<Item>) - Method in class me.lucko.helper.menu.Gui
+
 
+
addListener(ChannelListener<T>) - Method in interface me.lucko.helper.messaging.ChannelAgent
+
+
Adds a new listener to the channel;
+
+
addNumbers(Iterable<T>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addPlayer(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
addPlayer(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Adds a player to this team
+
+
addSerializables(Iterable<T>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
addStrings(Iterable<String>) - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
all() - Static method in class me.lucko.helper.utils.Players
+
+
Gets all players on the server.
+
+
ALL_SERVERS - Static variable in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Server name to represent all servers on the proxy
+
+
allOffline() - Static method in class me.lucko.helper.utils.Players
+
 
+
amount(int) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
apply(Consumer<? super T>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Applies an action to the backing object
+
+
apply(Consumer<ItemStackBuilder>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
apply(Gui) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
applyFromItem(Item) - Method in class me.lucko.helper.menu.Slot
+
+
Applies an item model to this slot.
+
+
applyIf(Predicate<? super T>, Consumer<? super T>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Applies an action to the backing object if the test passes.
+
+
applyIfNonNull(Consumer<? super T>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Applies an action to the backing object, if the object is not null.
+
+
applyLines(String...) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
applyLines(Collection<String>) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
applyLines(String...) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Automatically applies a set of score lines to this objective.
+
+
applyLines(Collection<String>) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Automatically applies a set of score lines to this objective.
+
+
applyScores(Map<String, Integer>) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
applyScores(Map<String, Integer>) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Applies a score mapping to this objective
+
+
array(JsonArray, boolean) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new array builder
+
+
array(JsonArray) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new array builder, without copying the passed array.
+
+
array() - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new array builder, with no initial values
+
+
asMap() - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Returns an immutable view of the backing map
+
+
assertArgument(int, Predicate<String>) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests a given argument with the provided predicate.
+
+
assertArgument(int, Predicate<String>, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests a given argument with the provided predicate.
+
+
assertConsole() - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is instance of ConsoleCommandSender, and sends them the default failure message if + they're not.
+
+
assertConsole(String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is instance of ConsoleCommandSender, and sends them the failure message if they're not
+
+
ASSERTION_DOUBLE - Static variable in class me.lucko.helper.Commands
+
 
+
ASSERTION_INTEGER - Static variable in class me.lucko.helper.Commands
+
 
+
ASSERTION_OFFLINE_PLAYER - Static variable in class me.lucko.helper.Commands
+
 
+
ASSERTION_ONLINE_PLAYER - Static variable in class me.lucko.helper.Commands
+
 
+
ASSERTION_UUID - Static variable in class me.lucko.helper.Commands
+
 
+
assertOp() - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is op, and sends them the default failure message if they're not.
+
+
assertOp(String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is op, and sends them the failure message if they don't have permission
+
+
assertPermission(String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender has the specified permission, and sends them the default failure message + if they don't have permission.
+
+
assertPermission(String, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender has the specified permission, and sends them the failure message if they + don't have permission.
+
+
assertPlayer() - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is instance of Player, and sends them the default failure message if they're not.
+
+
assertPlayer(String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the sender is instance of Player, and sends them the failure message if they're not
+
+
assertSender(Predicate<T>) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the sender with the provided predicate.
+
+
assertSender(Predicate<T>, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the sender with the provided predicate.
+
+
assertUsage(String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the arguments match the given usage string.
+
+
assertUsage(String, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Asserts that the arguments match the given usage string.
+
+
async() - Static method in class me.lucko.helper.Scheduler
+
+
Get an Executor instance which will execute all passed runnables using a thread pool
+
+
+ + + +

B

+
+
back() - Method in class me.lucko.helper.utils.Cycle
+
 
+
bind(T) - Method in class me.lucko.helper.menu.Gui
+
 
+
bind(ClickType, Consumer<InventoryClickEvent>) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bind(ClickType, Runnable) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bind(Consumer<InventoryClickEvent>, ClickType...) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bind(Runnable, ClickType...) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bind(ClickType, Consumer<InventoryClickEvent>) - Method in class me.lucko.helper.menu.Slot
+
 
+
bind(ClickType, Runnable) - Method in class me.lucko.helper.menu.Slot
+
 
+
bind(Consumer<InventoryClickEvent>, ClickType...) - Method in class me.lucko.helper.menu.Slot
+
 
+
bind(Runnable, ClickType...) - Method in class me.lucko.helper.menu.Slot
+
 
+
bind(T) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
bind(T) - Method in class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
bind(T) - Method in interface me.lucko.helper.terminable.TerminableConsumer
+
+
Binds with the given terminable.
+
+
bindAllConsumers(Iterable<Map.Entry<ClickType, T>>) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bindAllConsumers(Iterable<Map.Entry<ClickType, T>>) - Method in class me.lucko.helper.menu.Slot
+
 
+
bindAllRunnables(Iterable<Map.Entry<ClickType, T>>) - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
bindAllRunnables(Iterable<Map.Entry<ClickType, T>>) - Method in class me.lucko.helper.menu.Slot
+
 
+
bindComposite(T) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
bindComposite(T) - Method in interface me.lucko.helper.terminable.composite.CompositeTerminableConsumer
+
+
Binds a composite terminable to this consumer
+
+
bindComposite(T) - Method in class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
bindEvent(Class<E>, Function<E, T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Binds this handler to an event
+
+
bindEvent(Class<E>, EventPriority, Function<E, T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Binds this handler to an event
+
+
bindRunnable(T) - Method in class me.lucko.helper.menu.Gui
+
 
+
bindRunnable(T) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
bindRunnable(T) - Method in interface me.lucko.helper.terminable.TerminableConsumer
+
+
Binds with the given runnable.
+
+
bindWith(CompositeTerminableConsumer) - Method in interface me.lucko.helper.terminable.composite.CompositeTerminable
+
+
Registers this terminable with a terminable consumer (usually the plugin instance)
+
+
bindWith(TerminableConsumer) - Method in interface me.lucko.helper.terminable.Terminable
+
+
Registers this terminable with a terminable consumer (usually the plugin instance)
+
+
BlockPosition - Class in me.lucko.helper.serialize
+
+
An immutable and serializable block location object
+
+
BlockRegion - Class in me.lucko.helper.serialize
+
+
An immutable and serializable block region object
+
+
breakable(boolean) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
build() - Method in interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder
+
 
+
build() - Method in interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder
+
 
+
build() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
build(Runnable) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
build(ClickType, Runnable) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
build(Runnable, Runnable) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
build() - Method in class me.lucko.helper.menu.Item.Builder
+
 
+
build(Player, Function<PaginatedGui, List<Item>>) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
build(String, String, File, Function<Path, T>, BiConsumer<Path, T>) - Static method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
buildConsumer(Consumer<InventoryClickEvent>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
buildConsumer(ClickType, Consumer<InventoryClickEvent>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
buildConsumer(Consumer<InventoryClickEvent>, Consumer<InventoryClickEvent>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
builder(ItemStack) - Static method in class me.lucko.helper.menu.Item
+
 
+
buildFromConsumerMap(Map<ClickType, Consumer<InventoryClickEvent>>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
buildFromMap(Map<ClickType, Runnable>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
buildItem() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
bukkit() - Static method in class me.lucko.helper.Scheduler
+
 
+
bukkitAsync() - Static method in class me.lucko.helper.Scheduler
+
+
Get an Executor instance which will execute all passed runnables using the Bukkit scheduler thread pool + + Does not allow tasks to be posted if the backing plugin is not enabled.
+
+
bukkitScheduler() - Static method in class me.lucko.helper.Helper
+
 
+
BungeeMessaging - Class in me.lucko.helper.messaging.bungee
+
+
Wrapper class for the BungeeCord Plugin Messaging API, providing callbacks to read response data
+
+
+ + + +

C

+
+
cache - Variable in class me.lucko.helper.utils.CooldownCollection
+
 
+
call(Event) - Static method in class me.lucko.helper.Events
+
+
Submit the event on the current thread
+
+
callAsync(Event) - Static method in class me.lucko.helper.Events
+
+
Submit the event on a new async thread.
+
+
callAsync(Callable<T>) - Static method in class me.lucko.helper.Scheduler
+
+
Call a callable asynchronously
+
+
callLaterAsync(Callable<T>, long) - Static method in class me.lucko.helper.Scheduler
+
+
Call a callable asynchronously at some point in the future
+
+
callLaterSync(Callable<T>, long) - Static method in class me.lucko.helper.Scheduler
+
+
Call a callable on the main thread at some point in the future
+
+
callSync(Event) - Static method in class me.lucko.helper.Events
+
+
Submit the event on the main server thread.
+
+
callSync(Callable<T>) - Static method in class me.lucko.helper.Scheduler
+
+
Call a callable on the main server thread
+
+
cast(Object) - Method in interface me.lucko.helper.metadata.MetadataKey
+
+
Attempts to cast the given object to the return type of the key
+
+
Chain<T> - Interface in me.lucko.helper.function.chain
+
+
A simplified version of Java 8's Stream API.
+
+
Channel<T> - Interface in me.lucko.helper.messaging
+
+
Represents an individual messaging channel.
+
+
ChannelAgent<T> - Interface in me.lucko.helper.messaging
+
+
Represents an agent for interacting with a Channels message streams.
+
+
ChannelListener<T> - Interface in me.lucko.helper.messaging
+
+
Represents an object listening to messages sent on the channel.
+
+
ChunkPosition - Class in me.lucko.helper.serialize
+
+
An immutable and serializable chuck location object
+
+
ChunkRegion - Class in me.lucko.helper.serialize
+
+
An immutable and serializable chunk region object
+
+
cleanup() - Method in class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
cleanup() - Method in interface me.lucko.helper.terminable.registry.TerminableRegistry
+
+
Removes instances which have already been terminated via Terminable.hasTerminated()
+
+
clear() - Method in class me.lucko.helper.menu.Slot
+
+
Clears all attributes of the slot.
+
+
clear() - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Clears the map
+
+
clearBindings() - Method in class me.lucko.helper.menu.Slot
+
+
Clears all bindings on this slot.
+
+
clearBindings(ClickType) - Method in class me.lucko.helper.menu.Slot
+
+
Clears all bindings on this slot for a given click type.
+
+
clearEnchantments() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
clearItem() - Method in class me.lucko.helper.menu.Slot
+
+
Clears the item in this slot
+
+
clearItems() - Method in class me.lucko.helper.menu.Gui
+
 
+
clearLore() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
clearScores() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
clearScores() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Clears the scores from this objective
+
+
close() - Method in class me.lucko.helper.menu.Gui
+
 
+
CollectionUtils - Class in me.lucko.helper.utils
+
 
+
collectSerializablesToArray() - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Returns a collector which forms a JsonArray from GsonSerializables
+
+
collectToArray(Function<? super T, JsonElement>) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Returns a collector which forms a JsonArray using the value mapper
+
+
collectToArray() - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Returns a collector which forms a JsonArray from JsonElements
+
+
collectToObject(Function<? super T, String>, Function<? super T, JsonElement>) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Returns a collector which forms a JsonObject using the key and value mappers
+
+
color(Color) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
Color - Class in me.lucko.helper.utils
+
 
+
colorize(String) - Static method in class me.lucko.helper.utils.Color
+
 
+
combine(Terminable...) - Static method in class me.lucko.helper.terminable.Terminables
+
 
+
CommandMapUtil - Class in me.lucko.helper.utils
+
 
+
Commands - Class in me.lucko.helper
+
+
A functional command handling utility.
+
+
Commands.CommandBuilder<T extends CommandSender> - Interface in me.lucko.helper
+
+ +
+
Commands.CommandContext<T extends CommandSender> - Interface in me.lucko.helper
+
+
Represents the context for a command call
+
+
Commands.CommandHandler<T extends CommandSender> - Interface in me.lucko.helper
+
+
Represents a handler for a Commands.FunctionalCommand
+
+
Commands.FunctionalCommand - Interface in me.lucko.helper
+
+
Represents a command built from functional predicate calls
+
+
CompositeTerminable - Interface in me.lucko.helper.terminable.composite
+
+
A composite terminable is a class which combines a number + of Terminables, to be easily registered as one.
+
+
CompositeTerminableConsumer - Interface in me.lucko.helper.terminable.composite
+
+ +
+
connect(Player, String) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Connects a player to said subserver
+
+
connectOther(String, String) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Connects a named player to said subserver
+
+
console() - Static method in class me.lucko.helper.Helper
+
 
+
consume(Consumer<Slot>) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
consumeIfSpace(Consumer<Slot>) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
Cooldown - Class in me.lucko.helper.utils
+
+
A simple cooldown abstraction
+
+
CooldownCollection<T> - Class in me.lucko.helper.utils
+
+
A collection of mapped Cooldown instances
+
+
copy() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
copy() - Method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
copy() - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
copy() - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
copy() - Method in interface me.lucko.helper.menu.scheme.SchemeMapping
+
+
Makes a copy of this scheme mapping.
+
+
copy() - Method in class me.lucko.helper.utils.Cooldown
+
+
Copies the properties of this cooldown to a new instance
+
+
create() - Static method in class me.lucko.helper.Commands
+
+
Creates and returns a new command builder
+
+
create(Gson, TypeToken<T>) - Method in class me.lucko.helper.gson.GsonSerializableAdapterFactory
+
 
+
create(Position, List<String>) - Static method in interface me.lucko.helper.hologram.Hologram
+
+
Creates and returns a new hologram
+
+
create(int, int) - Static method in class me.lucko.helper.menu.paginated.PageInfo
+
 
+
create() - Static method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
create(String, TypeToken<T>) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
+
Creates a MetadataKey with the given id and type
+
+
create(String, Class<T>) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
+
Creates a MetadataKey with the given id and type
+
+
create() - Static method in interface me.lucko.helper.metadata.MetadataMap
+
 
+
create() - Static method in interface me.lucko.helper.terminable.registry.TerminableRegistry
+
 
+
create(Cooldown) - Static method in class me.lucko.helper.utils.CooldownCollection
+
+
Creates a new collection with the cooldown properties defined by the base instance
+
+
create(Function<T, String>, Cooldown) - Static method in class me.lucko.helper.utils.CooldownCollection
+
+
Creates a new collection with the cooldown properties defined by the base instance
+
+
createBooleanKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createCharacterKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createCooldownKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createDoubleKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createEmptyKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createFloatKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createIntegerKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createLongKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createObjective(String, String, DisplaySlot) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new scoreboard objective
+
+
createObjective(String, DisplaySlot) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new scoreboard objective with an automatically generated id
+
+
createObjective(String, String, DisplaySlot) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new scoreboard objective
+
+
createObjective(String, DisplaySlot) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new scoreboard objective with an automatically generated id
+
+
createPlayerObjective(Player, String, String, DisplaySlot) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new per-player scoreboard objective
+
+
createPlayerObjective(Player, String, DisplaySlot) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new per-player scoreboard objective with an automatically generated id
+
+
createPlayerObjective(Player, String, String, DisplaySlot) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new per-player scoreboard objective
+
+
createPlayerObjective(Player, String, DisplaySlot) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new per-player scoreboard objective with an automatically generated id
+
+
createPlayerTeam(Player, String, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new per-player scoreboard team
+
+
createPlayerTeam(Player, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new per-player scoreboard team with an automatically generated id
+
+
createPlayerTeam(Player, String, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new per-player scoreboard team
+
+
createPlayerTeam(Player, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new per-player scoreboard team with an automatically generated id
+
+
createShortKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createStringKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createTeam(String, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new scoreboard team
+
+
createTeam(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Creates a new scoreboard team with an automatically generated id
+
+
createTeam(String, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new scoreboard team
+
+
createTeam(String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Creates a new scoreboard team with an automatically generated id
+
+
createUuidKey(String) - Static method in interface me.lucko.helper.metadata.MetadataKey
+
 
+
createWithToString(Cooldown) - Static method in class me.lucko.helper.utils.CooldownCollection
+
+
Creates a new collection with the cooldown properties defined by the base instance
+
+
current() - Method in class me.lucko.helper.utils.Cycle
+
 
+
Cycle<E> - Class in me.lucko.helper.utils
+
+
A cycle of elements, backed by a list.
+
+
Cycle(List<E>) - Constructor for class me.lucko.helper.utils.Cycle
+
 
+
+ + + +

D

+
+
data(int) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
DEFAULT_FILTERS - Static variable in class me.lucko.helper.Events
+
 
+
DEFAULT_ITEM_SLOTS - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_LINES - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_NEXT_PAGE_ITEM - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_NEXT_PAGE_SLOT - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_PREVIOUS_PAGE_ITEM - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_PREVIOUS_PAGE_SLOT - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
DEFAULT_SCHEME - Static variable in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
Delegate<T> - Interface in me.lucko.helper.interfaces
+
+
Represents a class which delegates calls to a different object.
+
+
Dependency(String, String, String, String) - Constructor for class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
deserialize(Class<T>, JsonElement) - Static method in interface me.lucko.helper.gson.GsonSerializable
+
+
Deserializes a JsonElement to a GsonSerializable object.
+
+
deserialize(JsonElement) - Static method in interface me.lucko.helper.hologram.Hologram
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.BlockRegion
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.Direction
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.Point
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.Position
+
 
+
deserialize(JsonElement) - Static method in class me.lucko.helper.serialize.Region
+
 
+
deserialize2d(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize2f(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize2i(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize2l(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize3d(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize3f(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize3i(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize3l(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize4d(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize4f(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize4i(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserialize4l(JsonElement) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
deserializeInventory(JsonElement, String) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
deserializeItemstack(JsonElement) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
deserializeItemstacks(JsonElement) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
despawn() - Method in interface me.lucko.helper.hologram.Hologram
+
+
Despawns the hologram
+
+
Direction - Class in me.lucko.helper.serialize
+
+
An immutable and serializable direction object
+
+
disable() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
divideIterable(Iterable<T>, int) - Static method in class me.lucko.helper.utils.CollectionUtils
+
 
+
DummyHelperPlugin - Class in me.lucko.helper.plugin
+
+
Dummy plugin to make the server load this lib.
+
+
DummyHelperPlugin() - Constructor for class me.lucko.helper.plugin.DummyHelperPlugin
+
 
+
durability(int) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
+ + + +

E

+
+
elapsed() - Method in class me.lucko.helper.utils.Cooldown
+
+
Returns the elapsed time in milliseconds since the cooldown was last reset, or since creation time
+
+
elapsed(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
EMPTY - Static variable in class me.lucko.helper.menu.scheme.StandardSchemeMappings
+
 
+
Empty - Class in me.lucko.helper.metadata
+
+
An object which represents nothing.
+
+
EMPTY - Static variable in interface me.lucko.helper.terminable.Terminable
+
 
+
enable() - Method in class me.lucko.helper.plugin.DummyHelperPlugin
+
 
+
enable() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
enchant(Enchantment, int) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
enchant(Enchantment) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
end() - Method in interface me.lucko.helper.function.chain.Chain
+
+
Gets an optional containing the object backing this chain.
+
+
endOrNull() - Method in interface me.lucko.helper.function.chain.Chain
+
+
Gets the object, or null.
+
+
entityHasMetadata(MetadataKey<?>) - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the entity has a given metadata key
+
+
equals(Object) - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
equals(Object) - Method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
equals(Object) - Method in class me.lucko.helper.metadata.Empty
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.Direction
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.Point
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.Position
+
 
+
equals(Object) - Method in class me.lucko.helper.serialize.Region
+
 
+
equals(Object) - Method in class me.lucko.helper.utils.ServiceCallback
+
 
+
Events - Class in me.lucko.helper
+
+
A functional event listening utility.
+
+
Events.DefaultFilters - Interface in me.lucko.helper
+
+
Provides a set of useful default filters for passing to Events.HandlerBuilder.filter(Predicate).
+
+
Events.Handler<T> - Interface in me.lucko.helper
+
+
Responsible for the handling of a given event
+
+
Events.HandlerBuilder<T extends Event> - Interface in me.lucko.helper
+
+ +
+
Events.MergedHandler<T> - Interface in me.lucko.helper
+
+
Responsible for the handling of a merged event
+
+
Events.MergedHandlerBuilder<T> - Interface in me.lucko.helper
+
+ +
+
exceptionConsumer(BiConsumer<? super T, Throwable>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Sets the exception consumer for the handler.
+
+
exceptionConsumer(BiConsumer<Event, Throwable>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Sets the exception consumer for the handler.
+
+
executeCommand(String) - Static method in class me.lucko.helper.Helper
+
 
+
expireAfter(long, TimeUnit) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Sets the expiry time on the handler
+
+
expireAfter(long) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Sets the number of calls until the handler will automatically be unregistered
+
+
expireAfter(long, TimeUnit) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Sets the expiry time on the handler
+
+
expireAfter(long) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Sets the number of calls until the handler will automatically be unregistered
+
+
ExpiringValue<T> - Class in me.lucko.helper.metadata
+
+
Represents a value which will expire in the future
+
+
ExtendedJavaPlugin - Class in me.lucko.helper.plugin
+
+
An "extended" JavaPlugin class.
+
+
ExtendedJavaPlugin() - Constructor for class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
+ + + +

F

+
+
FileStorageHandler<T> - Class in me.lucko.helper.serialize
+
+
Utility class for handling storage file i/o.
+
+
FileStorageHandler(String, String, File) - Constructor for class me.lucko.helper.serialize.FileStorageHandler
+
 
+
fillWith(Item) - Method in class me.lucko.helper.menu.Gui
+
 
+
filter(Predicate<T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Adds a filter to the handler.
+
+
filter(Predicate<T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Adds a filter to the handler.
+
+
flag(ItemFlag...) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
flatMap(Function<? super T, ? extends Chain<? extends R>>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object, and returns a new chain instance + containing the result of the transformation.
+
+
floor() - Method in class me.lucko.helper.serialize.Position
+
 
+
forcePut(MetadataKey<T>, T) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, removing any previous value if present.
+
+
forcePut(MetadataKey<T>, TransientValue<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, removing any previous value if present.
+
+
forEach(Consumer<Player>) - Static method in class me.lucko.helper.utils.Players
+
+
Applies a given action to all players on the server
+
+
forEachIfPlayer(Iterable<Object>, Consumer<Player>) - Static method in class me.lucko.helper.utils.Players
+
+
Applies an action to each object in the iterable, if it is a player.
+
+
forEachInRange(Location, double, Consumer<Player>) - Static method in class me.lucko.helper.utils.Players
+
+
Applies an action to all players within a given radius of a point
+
+
forEachOffline(Consumer<OfflinePlayer>) - Static method in class me.lucko.helper.utils.Players
+
 
+
forward(String, String, byte[]) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Sends a custom plugin message to a given server.
+
+
forward(String, String, ByteArrayDataOutput) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Sends a custom plugin message to a given server.
+
+
forwardToPlayer(String, String, byte[]) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Sends a custom plugin message to a given server.
+
+
forwardToPlayer(String, String, ByteArrayDataOutput) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Sends a custom plugin message to a given server.
+
+
from(Location) - Static method in class me.lucko.helper.serialize.Direction
+
 
+
+ + + +

G

+
+
get() - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
get(int) - Method in interface me.lucko.helper.menu.scheme.SchemeMapping
+
+
Gets an item from the mapping which represents the given key.
+
+
get(MetadataKey<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Gets an optional value for the given key.
+
+
get() - Static method in class me.lucko.helper.scoreboard.GlobalScoreboard
+
+
Gets the global scoreboard
+
+
get() - Static method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Gets the global scoreboard instance.
+
+
get() - Static method in class me.lucko.helper.timings.Timings
+
+
Gets the TimingManager
+
+
get(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
+
Gets the internal cooldown instance associated with the given key
+
+
get(UUID) - Static method in class me.lucko.helper.utils.Players
+
+
Gets a player by uuid.
+
+
get(String) - Static method in class me.lucko.helper.utils.Players
+
+
Gets a player by username.
+
+
get() - Method in class me.lucko.helper.utils.ServiceCallback
+
+
Gets the service provider.
+
+
getArg(int) - Method in interface me.lucko.helper.Commands.CommandContext
+
+
Gets the argument at the given index.
+
+
getArgIfPresent(int) - Method in interface me.lucko.helper.Commands.CommandContext
+
+
Returns a Optional containing the argument if present
+
+
getArgs() - Method in interface me.lucko.helper.Commands.CommandContext
+
+
Gets an immutable list of the supplied arguments
+
+
getArtifactId() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
getAsLong() - Method in class me.lucko.helper.utils.Cooldown
+
 
+
getBacking() - Method in class me.lucko.helper.utils.Cycle
+
 
+
getBlock(int, int, int) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getBukkitId() - Method in interface me.lucko.helper.Scheduler.Task
+
+
Gets the Bukkit ID for this task
+
+
getBundledFile(String) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Gets a bundled file from the plugins resource folder.
+
+
getCallCounter() - Method in interface me.lucko.helper.Events.Handler
+
+
Gets the number of times the handler has been called
+
+
getCallCounter() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Gets the number of times the handler has been called
+
+
getChannel(String, TypeToken<T>) - Method in class me.lucko.helper.messaging.AbstractMessenger
+
 
+
getChannel() - Method in interface me.lucko.helper.messaging.ChannelAgent
+
+
Gets the channel this agent is acting for.
+
+
getChannel(String, TypeToken<T>) - Method in interface me.lucko.helper.messaging.Messenger
+
+
Gets a messaging channel by name.
+
+
getChannel(String, Class<T>) - Method in interface me.lucko.helper.messaging.Messenger
+
+
Gets a messaging channel by name.
+
+
getChannel(String) - Method in interface me.lucko.helper.messaging.Messenger
+
+
Gets a messaging channel by name, with the String type.
+
+
getCollisionRule() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getCollisionRule() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the current collision rule setting
+
+
getCurrent() - Method in class me.lucko.helper.menu.paginated.PageInfo
+
 
+
getDelegate() - Method in interface me.lucko.helper.interfaces.Delegate
+
+
Gets the delegate object
+
+
getDepth() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
getDepth() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
getDepth() - Method in class me.lucko.helper.serialize.Region
+
 
+
getDeserializeMethod(Class<?>) - Static method in interface me.lucko.helper.gson.GsonSerializable
+
+
Gets the deserialization method for a given class.
+
+
getDirection() - Method in class me.lucko.helper.serialize.Point
+
 
+
getDisplayName() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
getDisplayName() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getDisplayName() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Gets the current display name of this objective
+
+
getDisplayName() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the current display name of this team
+
+
getDisplaySlot() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
getDisplaySlot() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Gets the current display slot of this objective
+
+
getEventClass() - Method in interface me.lucko.helper.Events.Handler
+
+
Gets the class the handler is handling
+
+
getEventClasses() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Gets a set of the individual event classes being listened to
+
+
getExpiryTimeMillis() - Method in interface me.lucko.helper.Events.Handler
+
+
Gets the time in milliseconds when this handler will expire, if any
+
+
getExpiryTimeMillis() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Gets the time in milliseconds when this handler will expire, if any
+
+
getFallbackGui() - Method in class me.lucko.helper.menu.Gui
+
 
+
getFirstEmpty() - Method in class me.lucko.helper.menu.Gui
+
 
+
getFirstEmptySlot() - Method in class me.lucko.helper.menu.Gui
+
 
+
getGroupId() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
getGroups() - Method in interface me.lucko.helper.messaging.InstanceData
+
+
Gets the groups this server is a member of.
+
+
getHandle() - Method in class me.lucko.helper.menu.Gui
+
+
Gets the delegate Bukkit inventory
+
+
getHandledClass() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Gets the handled class
+
+
getHandlers() - Method in class me.lucko.helper.menu.Item
+
+
Gets the click handlers for this Item.
+
+
getHeight() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
getHeight() - Method in class me.lucko.helper.serialize.Region
+
 
+
getId() - Method in class me.lucko.helper.menu.Slot
+
+
Gets the id of this slot
+
+
getId() - Method in interface me.lucko.helper.messaging.InstanceData
+
+
Gets the unique ID of the current server instance.
+
+
getId() - Method in interface me.lucko.helper.metadata.MetadataKey
+
+
Gets the id of this key.
+
+
getId() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
getId() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getId() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Gets the id of this objective
+
+
getId() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the id of this team
+
+
getIndex() - Method in class me.lucko.helper.utils.Cycle
+
 
+
getInitialTitle() - Method in class me.lucko.helper.menu.Gui
+
+
Gets the initial title which was set when this GUI was made
+
+
getItem() - Method in class me.lucko.helper.menu.Slot
+
+
Gets the item in this slot
+
+
getItemSlots() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getItemStack() - Method in class me.lucko.helper.menu.Item
+
+
Gets the ItemStack backing this Item.
+
+
getLabel() - Method in interface me.lucko.helper.Commands.CommandContext
+
+
Gets the command label which was used to execute this command
+
+
getLines() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getListeners() - Method in interface me.lucko.helper.messaging.ChannelAgent
+
+
Gets an immutable copy of the listeners currently held by this agent.
+
+
getMaskedIndexes() - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
getMaskedIndexesImmutable() - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
getMax() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
getMax() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
getMax() - Method in class me.lucko.helper.serialize.Region
+
 
+
getMenuSize(int) - Static method in class me.lucko.helper.menu.Gui
+
+
Utility method to get the number of lines needed for x items
+
+
getMin() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
getMin() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
getMin() - Method in class me.lucko.helper.serialize.Region
+
 
+
getName() - Method in interface me.lucko.helper.messaging.Channel
+
+
Gets the name of the channel.
+
+
getNameTagVisibility() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getNameTagVisibility() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the current nametag visibility setting
+
+
getNextPageItem() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getNextPageSlot() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getNullable(int) - Method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
getNullable(int) - Method in interface me.lucko.helper.menu.scheme.SchemeMapping
+
+
Gets an item from the mapping which represents the given key.
+
+
getNullable(UUID) - Static method in class me.lucko.helper.utils.Players
+
+
Gets a player by uuid.
+
+
getNullable(String) - Static method in class me.lucko.helper.utils.Players
+
+
Gets a player by username.
+
+
getNullable() - Method in class me.lucko.helper.utils.ServiceCallback
+
+
Gets the service provider, or null if it is not provided for.
+
+
getObjective(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Gets an existing scoreboard objective if one with the id exists
+
+
getObjective(String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Gets an existing scoreboard objective if one with the id exists
+
+
getOffline(UUID) - Static method in class me.lucko.helper.utils.Players
+
 
+
getOffline(String) - Static method in class me.lucko.helper.utils.Players
+
 
+
getOfflineNullable(UUID) - Static method in class me.lucko.helper.utils.Players
+
 
+
getOfflineNullable(String) - Static method in class me.lucko.helper.utils.Players
+
 
+
getOrDefault(MetadataKey<T>, T) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Gets a value for the given key, or returns the default if one isn't present.
+
+
getOrNull() - Method in class me.lucko.helper.metadata.ExpiringValue
+
 
+
getOrNull(MetadataKey<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Gets a value for the given key, or null if one isn't present.
+
+
getOrNull() - Method in class me.lucko.helper.metadata.SoftValue
+
 
+
getOrNull() - Method in interface me.lucko.helper.metadata.TransientValue
+
+
Returns the underlying value, or null if it has expired
+
+
getOrNull() - Method in class me.lucko.helper.metadata.WeakValue
+
 
+
getOrPut(MetadataKey<T>, Supplier<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Gets a value for the given key, or puts and returns the default if one isn't present.
+
+
getOrPutExpiring(MetadataKey<T>, Supplier<TransientValue<T>>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Gets a value for the given key, or puts and returns the default if one isn't present.
+
+
getPitch() - Method in class me.lucko.helper.serialize.Direction
+
 
+
getPlayer() - Method in class me.lucko.helper.menu.Gui
+
+
Gets the player viewing this Gui
+
+
getPlayerObjective(Player, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Gets an existing per-player scoreboard objective if one with the id exists
+
+
getPlayerObjective(Player, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Gets an existing per-player scoreboard objective if one with the id exists
+
+
getPlayers() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getPlayers() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets an immutable copy of the teams members
+
+
getPlayerTeam(Player, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Gets an existing per-player scoreboard team if one with the id exists
+
+
getPlayerTeam(Player, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Gets an existing per-player scoreboard team if one with the id exists
+
+
getPlugin(String, Class<T>) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Gets a plugin instance for the given plugin name
+
+
getPlugin() - Static method in class me.lucko.helper.utils.LoaderUtils
+
 
+
getPosition() - Method in class me.lucko.helper.serialize.Point
+
 
+
getPrefix() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getPrefix() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the current prefix for this team
+
+
getPrettyPrinting() - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
getPreviousPageItem() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getPreviousPageSlot() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getProtocolName() - Method in enum me.lucko.helper.scoreboard.ScoreboardTeam.CollisionRule
+
 
+
getProtocolName() - Method in enum me.lucko.helper.scoreboard.ScoreboardTeam.NameTagVisibility
+
 
+
getRelative(BlockFace) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getRelative(BlockFace, int) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getRelative(BlockFace) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getRelative(BlockFace, int) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getRelative(BlockFace) - Method in class me.lucko.helper.serialize.Position
+
 
+
getRelative(BlockFace, double) - Method in class me.lucko.helper.serialize.Position
+
 
+
getRemainingSpace() - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Gets the number of remaining slots in the populator.
+
+
getRepoUrl() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
getScheme() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getScore(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
getScore(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Gets the value mapped to a given score, if present
+
+
getScores() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
getScores() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Gets an immutable copy of the current objective scores
+
+
getSender() - Method in interface me.lucko.helper.Commands.CommandContext
+
+
Gets the sender who executed the command
+
+
getServer(Consumer<String>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Gets this servers name, as defined in the BungeeCord config
+
+
getServers(Consumer<List<String>>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Get a list of server name strings, as defined in the BungeeCord config
+
+
getService(Class<T>) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Gets a service provided by the ServiceManager
+
+
getSize() - Method in class me.lucko.helper.menu.paginated.PageInfo
+
 
+
getSlot(int) - Method in class me.lucko.helper.menu.Gui
+
 
+
getSlots() - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Gets an immutable copy of the slots used by this populator.
+
+
getSuffix() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
getSuffix() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets the current suffix for this team
+
+
getTeam(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Gets an existing scoreboard team if one with the id exists
+
+
getTeam(String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Gets an existing scoreboard team if one with the id exists
+
+
getTimeout() - Method in class me.lucko.helper.utils.Cooldown
+
+
Gets the timeout in milliseconds for this cooldown
+
+
getTimesRan() - Method in interface me.lucko.helper.Scheduler.Task
+
+
Gets the number of times this task has ran.
+
+
getTitle() - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
getType() - Method in interface me.lucko.helper.interfaces.TypeAware
+
 
+
getType() - Method in interface me.lucko.helper.messaging.Channel
+
+
Gets the channels message type.
+
+
getType() - Method in interface me.lucko.helper.metadata.MetadataKey
+
+
Get the type of the value mapped to this key
+
+
getUrl() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
getVersion() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
getWidth() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
getWidth() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
getWidth() - Method in class me.lucko.helper.serialize.Region
+
 
+
getWorld() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getWorld() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getWorld() - Method in class me.lucko.helper.serialize.Position
+
 
+
getX() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getX() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getX() - Method in class me.lucko.helper.serialize.Position
+
 
+
getY() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getY() - Method in class me.lucko.helper.serialize.Position
+
 
+
getYaw() - Method in class me.lucko.helper.serialize.Direction
+
 
+
getZ() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
getZ() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
getZ() - Method in class me.lucko.helper.serialize.Position
+
 
+
GlobalScoreboard - Class in me.lucko.helper.scoreboard
+
+
Contains a "global" scoreboard instance, lazily loaded on first request.
+
+
gson - Variable in class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonProvider - Class in me.lucko.helper.gson
+
+
Provides static instances of Gson
+
+
GsonSerializable - Interface in me.lucko.helper.gson
+
+
An object which can be serialized to JSON.
+
+
GsonSerializableAdapterFactory - Class in me.lucko.helper.gson
+
 
+
GsonStorageHandler<T> - Class in me.lucko.helper.serialize
+
+
Extension of FileStorageHandler implemented using Gson.
+
+
GsonStorageHandler(String, String, File, Class<T>) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonStorageHandler(String, String, File, Class<T>, Gson) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonStorageHandler(String, String, File, TypeToken<T>) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonStorageHandler(String, String, File, TypeToken<T>, Gson) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonStorageHandler(String, String, File, Type) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
GsonStorageHandler(String, String, File, Type, Gson) - Constructor for class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
Gui - Class in me.lucko.helper.menu
+
+
A simple GUI abstraction
+
+
Gui(Player, int, String) - Constructor for class me.lucko.helper.menu.Gui
+
 
+
gui() - Method in class me.lucko.helper.menu.Slot
+
+
Gets the GUI this slot references
+
+
+ + + +

H

+
+
handle(Commands.CommandContext<T>) - Method in interface me.lucko.helper.Commands.CommandHandler
+
+
Executes the handler using the given command context
+
+
handle(Commands.CommandContext<?>) - Method in interface me.lucko.helper.Commands.FunctionalCommand
+
+
Calls the command handler
+
+
handle(InventoryClickEvent) - Method in class me.lucko.helper.menu.Slot
+
 
+
handler(Commands.CommandHandler<T>) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+ +
+
handler(Consumer<? super T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Builds and registers the Handler.
+
+
handler(BiConsumer<Events.Handler<T>, ? super T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Builds and registers the Handler.
+
+
handler(Consumer<? super T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Builds and registers the Handler.
+
+
handler(BiConsumer<Events.MergedHandler<T>, ? super T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Builds and registers the Handler.
+
+
handlers - Variable in class me.lucko.helper.menu.Slot
+
 
+
HARDENED_CLAY - Static variable in class me.lucko.helper.menu.scheme.StandardSchemeMappings
+
 
+
has(MetadataKey<?>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Returns if this map contains the given key, and the types of each key match.
+
+
hashCode() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
hashCode() - Method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.Direction
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.Point
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.Position
+
 
+
hashCode() - Method in class me.lucko.helper.serialize.Region
+
 
+
hashCode() - Method in class me.lucko.helper.utils.ServiceCallback
+
 
+
hasItem() - Method in class me.lucko.helper.menu.Slot
+
+
Gets if this slot has an item
+
+
hasListeners() - Method in interface me.lucko.helper.messaging.ChannelAgent
+
+
Gets if this agent has any active listeners.
+
+
hasMappingFor(int) - Method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
hasMappingFor(int) - Method in interface me.lucko.helper.menu.scheme.SchemeMapping
+
+
Gets if this scheme has a mapping for a given key
+
+
hasPlayer(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
hasPlayer(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Returns true if the given player is a member of this team
+
+
hasScore(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
hasScore(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Returns true if this objective has a given score
+
+
hasTerminated() - Method in class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
hasTerminated() - Method in interface me.lucko.helper.terminable.Terminable
+
+
Used to help cleanup held terminable instances in registries
+
+
hasTerminated() - Method in class me.lucko.helper.utils.ServiceCallback
+
 
+
Helper - Class in me.lucko.helper
+
+
Base class for helper, which mainly just proxies calls to Bukkit.getServer() for convenience.
+
+
hideAttributes() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
Hologram - Interface in me.lucko.helper.hologram
+
+
A simple hologram utility.
+
+
hostPlugin() - Static method in class me.lucko.helper.Helper
+
+
Gets the plugin which is "hosting" helper.
+
+
+ + + +

I

+
+
ifElse(Predicate<? super T>, R, R) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Returns a new chain instance containing a new value, depending on if the current + object passed the given test.
+
+
ifPresent(MetadataKey<T>, Consumer<? super T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Attempts to get a value for the given key, and applies the action is present.
+
+
ignoreCancelled() - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the event isn't cancelled
+
+
ignoreSameBlock() - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the player has moved over a block
+
+
ignoreSameBlockAndY() - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the player has moved over a block, not including movement + directly up and down.
+
+
ignoreSameChunk() - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the player has moved over a chunk border
+
+
ImmutableCollectors - Class in me.lucko.helper.utils
+
+
Immutable implementations of Collector using Guava's immutable collections.
+
+
index - Variable in class me.lucko.helper.utils.Cycle
+
 
+
info(String) - Static method in class me.lucko.helper.utils.Log
+
 
+
inRegion(BlockPosition) - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
inRegion(Block) - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
inRegion(int, int, int) - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
inRegion(ChunkPosition) - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
inRegion(int, int) - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
inRegion(Position) - Method in class me.lucko.helper.serialize.Region
+
 
+
inRegion(Location) - Method in class me.lucko.helper.serialize.Region
+
 
+
inRegion(double, double, double) - Method in class me.lucko.helper.serialize.Region
+
 
+
INSTANCE - Static variable in class me.lucko.helper.gson.GsonSerializableAdapterFactory
+
 
+
instance() - Static method in class me.lucko.helper.metadata.Empty
+
 
+
InstanceData - Interface in me.lucko.helper.messaging
+
+
Provides information about the current server instance.
+
+
internalAsync() - Static method in class me.lucko.helper.Scheduler
+
+
Get an Executor instance which will execute all passed runnables using an internal thread pool
+
+
ip(Player, Consumer<Map.Entry<String, Integer>>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Get the real IP of a player
+
+
isActive() - Method in interface me.lucko.helper.Events.Handler
+
+
Gets whether the handler is active
+
+
isActive() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Gets whether the handler is active
+
+
isAllowFriendlyFire() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
isAllowFriendlyFire() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets if friendly fire is allowed
+
+
isCanSeeFriendlyInvisibles() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
isCanSeeFriendlyInvisibles() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Gets if members of this team can see invisible members on the same team
+
+
isEmpty() - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Returns if the map is empty
+
+
isFirstDraw() - Method in class me.lucko.helper.menu.Gui
+
 
+
isValid() - Method in class me.lucko.helper.menu.Gui
+
+
Returns true unless this GUI has been invalidated, through being closed, or the player leaving.
+
+
Item - Class in me.lucko.helper.menu
+
+
The initial model of a clickable item in a Gui.
+
+
Item(Map<ClickType, Consumer<InventoryClickEvent>>, ItemStack) - Constructor for class me.lucko.helper.menu.Item
+
 
+
Item.Builder - Class in me.lucko.helper.menu
+
+
Aids creation of Item instances.
+
+
itemSlots(List<Integer>) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
ItemStackBuilder - Class in me.lucko.helper.item
+
+
Easily construct ItemStack instances
+
+
+ + + +

J

+
+
JsonBuilder - Class in me.lucko.helper.gson
+
+
Builder utilities for creating GSON Objects/Arrays.
+
+
JsonBuilder.JsonArrayBuilder - Interface in me.lucko.helper.gson
+
+
A JsonArray builder utility
+
+
JsonBuilder.JsonObjectBuilder - Interface in me.lucko.helper.gson
+
+
A JsonObject builder utility
+
+
+ + + +

K

+
+
kickPlayer(String, String) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Kick a player from the proxy
+
+
+ + + +

L

+
+
lastCalled - Variable in class me.lucko.helper.utils.Cooldown
+
 
+
LibraryLoader - Class in me.lucko.helper.maven
+
+
Resolves MavenLibrary annotations for a class, and loads the dependency + into the classloader.
+
+
LibraryLoader() - Constructor for class me.lucko.helper.maven.LibraryLoader
+
 
+
LibraryLoader.Dependency - Class in me.lucko.helper.maven
+
 
+
lines(int) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
load(String, String, String) - Static method in class me.lucko.helper.maven.LibraryLoader
+
 
+
load(String, String, String, String) - Static method in class me.lucko.helper.maven.LibraryLoader
+
 
+
load(LibraryLoader.Dependency) - Static method in class me.lucko.helper.maven.LibraryLoader
+
 
+
load() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
load() - Method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
loadAll(Object) - Static method in class me.lucko.helper.maven.LibraryLoader
+
+
Resolves all MavenLibrary annotations on the given object.
+
+
loadAll(Class<?>) - Static method in class me.lucko.helper.maven.LibraryLoader
+
+
Resolves all MavenLibrary annotations on the given class.
+
+
loadConfig(String) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Loads a config file from a file name.
+
+
LoaderUtils - Class in me.lucko.helper.utils
+
+
Provides the instance which loaded the helper classes into the server
+
+
Log - Class in me.lucko.helper.utils
+
+
Utility for quickly accessing a logger instance without using Bukkit.getLogger()
+
+
lookupBlocksWithKey(MetadataKey<T>) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a map of the blocks with a given metadata key
+
+
lookupEntitiesWithKey(MetadataKey<T>) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a map of the entities with a given metadata key
+
+
lookupPlayersWithKey(MetadataKey<T>) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a map of the players with a given metadata key
+
+
lookupWorldsWithKey(MetadataKey<T>) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a map of the worlds with a given metadata key
+
+
lore(String) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
lore(String...) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
lore(Iterable<String>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
+ + + +

M

+
+
map(Function<? super T, ? extends R>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object, and returns a new chain instance + containing the result of the transformation.
+
+
mapNullSafe(Function<? super T, ? extends R>, R) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object and returns a new chain instance + containing the result of the transformation, if the backing object is + not null.
+
+
mapNullSafeGet(Function<? super T, ? extends R>, Supplier<? extends R>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object and returns a new chain instance + containing the result of the transformation, if the backing object is + not null.
+
+
mapOrElse(Predicate<? super T>, Function<? super T, ? extends R>, R) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object, and returns a new chain instance + containing the result of the transformation function, if the test is passed.
+
+
mapOrElse(Predicate<? super T>, Function<? super T, ? extends R>, Function<? super T, ? extends R>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Transforms the backing object, and returns a new chain instance + containing the result of the chosen transformation function.
+
+
mappingFunc - Variable in class me.lucko.helper.utils.CooldownCollection
+
 
+
mask(String) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
maskEmpty(int) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
masks(String...) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
MavenLibraries - Annotation Type in me.lucko.helper.maven
+
+
Annotation to indicate the required libraries for a class.
+
+
MavenLibrary - Annotation Type in me.lucko.helper.maven
+
+
Annotation to indicate a required library for a class.
+
+
me.lucko.helper - package me.lucko.helper
+
 
+
me.lucko.helper.function - package me.lucko.helper.function
+
 
+
me.lucko.helper.function.chain - package me.lucko.helper.function.chain
+
 
+
me.lucko.helper.gson - package me.lucko.helper.gson
+
 
+
me.lucko.helper.hologram - package me.lucko.helper.hologram
+
 
+
me.lucko.helper.interfaces - package me.lucko.helper.interfaces
+
 
+
me.lucko.helper.item - package me.lucko.helper.item
+
 
+
me.lucko.helper.maven - package me.lucko.helper.maven
+
 
+
me.lucko.helper.menu - package me.lucko.helper.menu
+
 
+
me.lucko.helper.menu.paginated - package me.lucko.helper.menu.paginated
+
 
+
me.lucko.helper.menu.scheme - package me.lucko.helper.menu.scheme
+
 
+
me.lucko.helper.messaging - package me.lucko.helper.messaging
+
 
+
me.lucko.helper.messaging.bungee - package me.lucko.helper.messaging.bungee
+
 
+
me.lucko.helper.metadata - package me.lucko.helper.metadata
+
 
+
me.lucko.helper.plugin - package me.lucko.helper.plugin
+
 
+
me.lucko.helper.plugin.ap - package me.lucko.helper.plugin.ap
+
 
+
me.lucko.helper.scoreboard - package me.lucko.helper.scoreboard
+
 
+
me.lucko.helper.serialize - package me.lucko.helper.serialize
+
 
+
me.lucko.helper.terminable - package me.lucko.helper.terminable
+
 
+
me.lucko.helper.terminable.composite - package me.lucko.helper.terminable.composite
+
 
+
me.lucko.helper.terminable.registry - package me.lucko.helper.terminable.registry
+
 
+
me.lucko.helper.timings - package me.lucko.helper.timings
+
 
+
me.lucko.helper.utils - package me.lucko.helper.utils
+
 
+
me.lucko.helper.utils.annotation - package me.lucko.helper.utils.annotation
+
 
+
MenuPopulator - Class in me.lucko.helper.menu.scheme
+
+
A utility to help place items into a Gui
+
+
MenuPopulator(Gui, MenuScheme) - Constructor for class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
MenuPopulator(Gui, List<Integer>) - Constructor for class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
MenuScheme - Class in me.lucko.helper.menu.scheme
+
+
Helps to populate a menu with border items
+
+
MenuScheme(SchemeMapping) - Constructor for class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
MenuScheme() - Constructor for class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
merge(Class<T>) - Static method in class me.lucko.helper.Events
+
+
Makes a MergedHandlerBuilder for a given super type
+
+
merge(TypeToken<T>) - Static method in class me.lucko.helper.Events
+
+
Makes a MergedHandlerBuilder for a given super type
+
+
merge(Class<S>, Class<? extends S>...) - Static method in class me.lucko.helper.Events
+
+
Makes a MergedHandlerBuilder for a super event class
+
+
merge(Class<S>, EventPriority, Class<? extends S>...) - Static method in class me.lucko.helper.Events
+
+
Makes a MergedHandlerBuilder for a super event class
+
+
message(String, String) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Send a message (as in chat message) to the specified player
+
+
Messenger - Interface in me.lucko.helper.messaging
+
+
Represents an object which manages messaging Channels.
+
+
Metadata - Class in me.lucko.helper.metadata
+
+
Holds MetadataMaps bound to players, entities, blocks and worlds.
+
+
MetadataKey<T> - Interface in me.lucko.helper.metadata
+
+
A MetadataKey can be mapped to values in a MetadataMap.
+
+
MetadataMap - Interface in me.lucko.helper.metadata
+
+
A map which holds MetadataKeys, and maps them to persistent or transient (expiring / weak) values.
+
+
msg(CommandSender, String...) - Static method in class me.lucko.helper.utils.Players
+
+
Messages a sender a set of messages.
+
+
+ + + +

N

+
+
name(String) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
newAgent() - Method in interface me.lucko.helper.messaging.Channel
+
+
Creates a new ChannelAgent for this channel.
+
+
newPopulator(Gui) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
next() - Method in class me.lucko.helper.utils.Cycle
+
 
+
nextPageItem(Function<PageInfo, ItemStack>) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
nextPageSlot(int) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
NonnullByDefault - Annotation Type in me.lucko.helper.utils.annotation
+
 
+
now() - Static method in class me.lucko.helper.utils.TimeUtil
+
 
+
nowUnix() - Static method in class me.lucko.helper.utils.TimeUtil
+
 
+
nullValue() - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Returns an instance of JsonNull.
+
+
Numbers - Class in me.lucko.helper.function
+
+
Utility methods for parsing Numbers, Integers, Longs, + Floats and Doubles from Strings.
+
+
+ + + +

O

+
+
object(JsonObject, boolean) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new object builder
+
+
object(JsonObject) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new object builder, without copying the passed object.
+
+
object() - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a new object builder, with no initial values
+
+
objects - Variable in class me.lucko.helper.utils.Cycle
+
 
+
of(Material) - Static method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
of(ItemStack) - Static method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
of(Map<Integer, Item>) - Static method in class me.lucko.helper.menu.scheme.AbstractSchemeMapping
+
 
+
of(T, long, TimeUnit) - Static method in class me.lucko.helper.metadata.ExpiringValue
+
 
+
of(T) - Static method in class me.lucko.helper.metadata.SoftValue
+
 
+
of(T) - Static method in class me.lucko.helper.metadata.WeakValue
+
 
+
of(int, int, int, String) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(int, int, int, World) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(Vector3i, String) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(Vector3i, World) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(Location) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(Block) - Static method in class me.lucko.helper.serialize.BlockPosition
+
 
+
of(BlockPosition, BlockPosition) - Static method in class me.lucko.helper.serialize.BlockRegion
+
 
+
of(int, int, String) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
of(int, int, World) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
of(Vector2i, String) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
of(Vector2i, World) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
of(Chunk) - Static method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
of(ChunkPosition, ChunkPosition) - Static method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
of(float, float) - Static method in class me.lucko.helper.serialize.Direction
+
 
+
of(Position, Direction) - Static method in class me.lucko.helper.serialize.Point
+
 
+
of(Location) - Static method in class me.lucko.helper.serialize.Point
+
 
+
of(double, double, double, String) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(double, double, double, World) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(Vector3d, String) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(Vector3d, World) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(Location) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(Block) - Static method in class me.lucko.helper.serialize.Position
+
 
+
of(Position, Position) - Static method in class me.lucko.helper.serialize.Region
+
 
+
of(Runnable) - Static method in interface me.lucko.helper.terminable.Terminable
+
 
+
of(String) - Static method in class me.lucko.helper.timings.Timings
+
 
+
of(String, MCTiming) - Static method in class me.lucko.helper.timings.Timings
+
 
+
of(long, TimeUnit) - Static method in class me.lucko.helper.utils.Cooldown
+
+
Creates a cooldown lasting a specified amount of time
+
+
of(Class<T>) - Static method in class me.lucko.helper.utils.ServiceCallback
+
+
Create a new ServiceCallback for the given class.
+
+
ofStart(String) - Static method in class me.lucko.helper.timings.Timings
+
 
+
ofStart(String, MCTiming) - Static method in class me.lucko.helper.timings.Timings
+
 
+
ofTicks(long) - Static method in class me.lucko.helper.utils.Cooldown
+
+
Creates a cooldown lasting a number of game ticks
+
+
onDisable() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
onEnable() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
ONLINE_SERVERS - Static variable in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Server name to represent only the online servers on the proxy
+
+
onLoad() - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
 
+
onMessage(ChannelAgent<T>, T) - Method in interface me.lucko.helper.messaging.ChannelListener
+
+
Called when a message is posted to this listener.
+
+
onPluginMessageReceived(String, Player, byte[]) - Method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
 
+
open() - Method in class me.lucko.helper.menu.Gui
+
 
+
OPEN_GUI_KEY - Static variable in class me.lucko.helper.menu.Gui
+
 
+
orElse(Predicate<? super T>, T) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Updates the backing object if the test fails, otherwise returns an identical chain.
+
+
orElseGet(Predicate<? super T>, Supplier<? extends T>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Updates the backing object if the test fails, otherwise returns an identical chain.
+
+
orElseGetIfNull(Supplier<? extends T>) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Updates the backing object if it is null, otherwise returns an identical chain.
+
+
orElseIfNull(T) - Method in interface me.lucko.helper.function.chain.Chain
+
+
Updates the backing object if it is null, otherwise returns an identical chain.
+
+
+ + + +

P

+
+
PacketScoreboard - Class in me.lucko.helper.scoreboard
+
+
A thread-safe scoreboard using ProtocolLib
+
+
PacketScoreboard() - Constructor for class me.lucko.helper.scoreboard.PacketScoreboard
+
 
+
PacketScoreboard(ExtendedJavaPlugin) - Constructor for class me.lucko.helper.scoreboard.PacketScoreboard
+
 
+
PacketScoreboardObjective - Class in me.lucko.helper.scoreboard
+
+
Wrapper for PacketPlayOutScoreboardObjective, PacketPlayOutScoreboardScore and PacketPlayOutScoreboardDisplayObjective
+
+
PacketScoreboardObjective(PacketScoreboard, String, String, DisplaySlot) - Constructor for class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
+
Creates a new scoreboard objective
+
+
PacketScoreboardTeam - Class in me.lucko.helper.scoreboard
+
+
Packet wrapper for PacketPlayOutScoreboardTeam + + http://wiki.vg/Protocol#Teams
+
+
PacketScoreboardTeam(PacketScoreboard, String, String) - Constructor for class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
+
Creates a new scoreboard team
+
+
PageInfo - Class in me.lucko.helper.menu.paginated
+
+
Represents data about a currently open page in a PaginatedGui.
+
+
PaginatedGui - Class in me.lucko.helper.menu.paginated
+
+
Extension of Gui which automatically paginates Items.
+
+
PaginatedGui(Function<PaginatedGui, List<Item>>, Player, PaginatedGuiBuilder) - Constructor for class me.lucko.helper.menu.paginated.PaginatedGui
+
 
+
PaginatedGuiBuilder - Class in me.lucko.helper.menu.paginated
+
+
Specification class for a PaginatedGui.
+
+
parse(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseByteNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseByteOpt(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseDouble(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseDoubleNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseDoubleOpt(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseFloat(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseFloatNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseFloatOpt(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseInteger(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseIntegerNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseIntegerOpt(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseLong(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseLongNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseLongOpt(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
parseNullable(String) - Static method in class me.lucko.helper.function.Numbers
+
 
+
placeIfSpace(Item) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Places an item onto the Gui using the next available slot in the populator
+
+
playerCount(String, Consumer<Integer>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Gets the amount of players on a certain server, or all servers
+
+
playerHasMetadata(MetadataKey<?>) - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the player has a given metadata key
+
+
playerHasPermission(String) - Method in interface me.lucko.helper.Events.DefaultFilters
+
+
Returns a predicate which only returns true if the player has the given permission
+
+
playerList(String, Consumer<List<String>>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Gets a list of players connected on a certain server, or all servers.
+
+
Players - Class in me.lucko.helper.utils
+
+
A collection of Player related utilities
+
+
playSound(Player, Sound) - Static method in class me.lucko.helper.utils.Players
+
 
+
playSound(Player, Location, Sound) - Static method in class me.lucko.helper.utils.Players
+
 
+
playSound(Location, Sound) - Static method in class me.lucko.helper.utils.Players
+
 
+
Plugin - Annotation Type in me.lucko.helper.plugin.ap
+
+
Annotation to automatically generate plugin.yml files for helper projects
+
+
PluginDependency - Annotation Type in me.lucko.helper.plugin.ap
+
+
Represents a plugin dependency
+
+
PluginProcessor - Class in me.lucko.helper.plugin.ap
+
+
Processes the Plugin annotation and generates a plugin.yml file.
+
+
PluginProcessor() - Constructor for class me.lucko.helper.plugin.ap.PluginProcessor
+
 
+
plugins() - Static method in class me.lucko.helper.Helper
+
 
+
Point - Class in me.lucko.helper.serialize
+
+
An immutable and serializable position + direction object
+
+
Position - Class in me.lucko.helper.serialize
+
+
An immutable and serializable location object
+
+
previousPageItem(Function<PageInfo, ItemStack>) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
previousPageSlot(int) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
primitive(String) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitive(Number) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitive(Boolean) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitive(Character) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitiveNonNull(String) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitiveNonNull(Number) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitiveNonNull(Boolean) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
primitiveNonNull(Character) - Static method in class me.lucko.helper.gson.JsonBuilder
+
+
Creates a JsonPrimitive from the given value.
+
+
process(Set<? extends TypeElement>, RoundEnvironment) - Method in class me.lucko.helper.plugin.ap.PluginProcessor
+
 
+
provide(Object) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a metadata map for the given object.
+
+
provideForBlock(Block) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a MetadataMap for the given block.
+
+
provideForEntity(Entity) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a MetadataMap for the given entity.
+
+
provideForPlayer(Player) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a MetadataMap for the given player.
+
+
provideForPlayer(UUID) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a MetadataMap for the given player.
+
+
provideForWorld(World) - Static method in class me.lucko.helper.metadata.Metadata
+
+
Gets a MetadataMap for the given world.
+
+
provideService(Class<T>, T, ServicePriority) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Provides a service to the ServiceManager, bound to this plugin
+
+
provideService(Class<T>, T) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Provides a service to the ServiceManager, bound to this plugin at ServicePriority.Normal.
+
+
put(MetadataKey<T>, T) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, removing any previous value if present.
+
+
put(MetadataKey<T>, TransientValue<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, removing any previous value if present.
+
+
putIfAbsent(MetadataKey<T>, T) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, only if an existing key is not present.
+
+
putIfAbsent(MetadataKey<T>, TransientValue<T>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Adds a metadata key and corresponding value into this map, only if an existing key is not present.
+
+
+ + + +

R

+
+
readFromFile(Path) - Method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
readFromFile(Path) - Method in class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
readObject(Reader) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
readObject(String) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
redraw() - Method in class me.lucko.helper.menu.Gui
+
+
Places items on the GUI.
+
+
redraw() - Method in class me.lucko.helper.menu.paginated.PaginatedGui
+
 
+
refresh() - Method in class me.lucko.helper.utils.ServiceCallback
+
+
Refreshes the backing instance of the service
+
+
Region - Class in me.lucko.helper.serialize
+
+
An immutable and serializable region object
+
+
regionWith(BlockPosition) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
regionWith(Position) - Method in class me.lucko.helper.serialize.Position
+
 
+
register(ExtendedJavaPlugin, String...) - Method in interface me.lucko.helper.Commands.FunctionalCommand
+
+
Registers this command with the server, via the given plugin instance
+
+
registerCommand(T, String...) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Registers a CommandExecutor with the server
+
+
registerCommand(Plugin, T, String...) - Static method in class me.lucko.helper.utils.CommandMapUtil
+
+
Registers a CommandExecutor with the server
+
+
registerForwardCallback(String, Predicate<ByteArrayDataInput>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Registers a callback to listen for messages sent on forwarded subchannels.
+
+
registerForwardCallbackRaw(String, Predicate<byte[]>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Registers a callback to listen for messages sent on forwarded subchannels.
+
+
registerIncomingMessage(String, String) - Method in class me.lucko.helper.messaging.AbstractMessenger
+
+
Distributes an oncoming message to the channels held in this messenger.
+
+
registerListener(T) - Method in class me.lucko.helper.plugin.ExtendedJavaPlugin
+
+
Register a listener with the server.
+
+
remainingMillis() - Method in class me.lucko.helper.utils.Cooldown
+
+
Gets the time in milliseconds until the cooldown will become inactive.
+
+
remainingMillis(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
remainingTime(TimeUnit) - Method in class me.lucko.helper.utils.Cooldown
+
+
Gets the time until the cooldown will become inactive.
+
+
remainingTime(T, TimeUnit) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
remove(MetadataKey<?>) - Method in interface me.lucko.helper.metadata.MetadataMap
+
+
Removes the given key from this map
+
+
removeItem(int) - Method in class me.lucko.helper.menu.Gui
+
 
+
removeItems(int...) - Method in class me.lucko.helper.menu.Gui
+
 
+
removeItems(Iterable<Integer>) - Method in class me.lucko.helper.menu.Gui
+
 
+
removeListener(ChannelListener<T>) - Method in interface me.lucko.helper.messaging.ChannelAgent
+
+
Removes a listener from the channel.
+
+
removeObjective(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Removes a scoreboard objective from this scoreboard
+
+
removeObjective(String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Removes a scoreboard objective from this scoreboard
+
+
removePlayer(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
removePlayer(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Removes a player from this team
+
+
removePlayerObjective(Player, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Removes a per-player scoreboard objective from this scoreboard
+
+
removePlayerObjective(Player, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Removes a per-player scoreboard objective from this scoreboard
+
+
removePlayerTeam(Player, String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Removes a per-player scoreboard team from this scoreboard
+
+
removePlayerTeam(Player, String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Removes a per-player scoreboard team from this scoreboard
+
+
removeScore(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
removeScore(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Removes a score
+
+
removeTeam(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboard
+
+
Removes a scoreboard team from this scoreboard
+
+
removeTeam(String) - Method in interface me.lucko.helper.scoreboard.Scoreboard
+
+
Removes a scoreboard team from this scoreboard
+
+
Repository - Annotation Type in me.lucko.helper.maven
+
+
Represents a maven repository.
+
+
reset() - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
+
Resets the slot order used by this populator to the state it was in upon construction
+
+
reset() - Method in class me.lucko.helper.utils.Cooldown
+
+
Resets the cooldown
+
+
reset(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
resetFlySpeed(Player) - Static method in class me.lucko.helper.utils.Players
+
 
+
resetWalkSpeed(Player) - Static method in class me.lucko.helper.utils.Players
+
 
+
resolve(Object) - Static method in interface me.lucko.helper.interfaces.Delegate
+
 
+
runAsync(Runnable) - Static method in class me.lucko.helper.Scheduler
+
+
Execute a runnable asynchronously
+
+
runLaterAsync(Runnable, long) - Static method in class me.lucko.helper.Scheduler
+
+
Execute a runnable asynchronously at some point in the future
+
+
runLaterSync(Runnable, long) - Static method in class me.lucko.helper.Scheduler
+
+
Execute a runnable on the main server thread at some point in the future
+
+
runSync(Runnable) - Static method in class me.lucko.helper.Scheduler
+
+
Execute a runnable on the main server thread
+
+
runTaskRepeatingAsync(Consumer<Scheduler.Task>, long, long) - Static method in class me.lucko.helper.Scheduler
+
+
Schedule a repeating task to run asynchronously
+
+
runTaskRepeatingAsync(Runnable, long, long) - Static method in class me.lucko.helper.Scheduler
+
+
Schedule a repeating task to run asynchronously
+
+
runTaskRepeatingSync(Consumer<Scheduler.Task>, long, long) - Static method in class me.lucko.helper.Scheduler
+
+
Schedule a repeating task to run on the main server thread
+
+
runTaskRepeatingSync(Runnable, long, long) - Static method in class me.lucko.helper.Scheduler
+
+
Schedule a repeating task to run on the main server thread
+
+
+ + + +

S

+
+
save(T) - Method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
saveAndBackup(T) - Method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
saveToFile(Path, T) - Method in class me.lucko.helper.serialize.FileStorageHandler
+
 
+
saveToFile(Path, T) - Method in class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
Scheduler - Class in me.lucko.helper
+
+
A utility class to help with scheduling.
+
+
Scheduler.Task - Interface in me.lucko.helper
+
+
Represents a scheduled repeating task
+
+
scheme(MenuScheme) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
scheme(int...) - Method in class me.lucko.helper.menu.scheme.MenuScheme
+
 
+
SchemeMapping - Interface in me.lucko.helper.menu.scheme
+
+
Represents a mapping to be used in a MenuScheme
+
+
Scoreboard - Interface in me.lucko.helper.scoreboard
+
+
Represents a Scoreboard on the server
+
+
ScoreboardObjective - Interface in me.lucko.helper.scoreboard
+
+
Represents a specific objective on a Scoreboard.
+
+
ScoreboardTeam - Interface in me.lucko.helper.scoreboard
+
+
Represents a specific team on a Scoreboard.
+
+
ScoreboardTeam.CollisionRule - Enum in me.lucko.helper.scoreboard
+
 
+
ScoreboardTeam.NameTagVisibility - Enum in me.lucko.helper.scoreboard
+
 
+
sendBlockChange(Player, Location, Material, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
sendBlockChange(Player, Block, Material, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
sendBlockChange(Player, Location, Material) - Static method in class me.lucko.helper.utils.Players
+
 
+
sendBlockChange(Player, Block, Material) - Static method in class me.lucko.helper.utils.Players
+
 
+
sendMessage(T) - Method in interface me.lucko.helper.messaging.Channel
+
+
Sends a new message to the channel.
+
+
serialize() - Method in interface me.lucko.helper.gson.GsonSerializable
+
+
Serializes the object to JSON
+
+
serialize() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
serialize() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
serialize() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
serialize() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
serialize() - Method in class me.lucko.helper.serialize.Direction
+
 
+
serialize() - Method in class me.lucko.helper.serialize.Point
+
 
+
serialize() - Method in class me.lucko.helper.serialize.Position
+
 
+
serialize() - Method in class me.lucko.helper.serialize.Region
+
 
+
serialize(Vector2d) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector2f) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector2i) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector2l) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector3d) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector3f) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector3i) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector3l) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector4d) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector4f) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector4i) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serialize(Vector4l) - Static method in class me.lucko.helper.serialize.VectorSerializers
+
 
+
serializeInventory(Inventory) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
serializeItemstack(ItemStack) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
serializeItemstacks(ItemStack[]) - Static method in class me.lucko.helper.serialize.Serializers
+
 
+
Serializers - Class in me.lucko.helper.serialize
+
+
Utility methods for converting ItemStacks and Inventories to and from JSON.
+
+
server() - Static method in class me.lucko.helper.Helper
+
 
+
serverIp(String, Consumer<Map.Entry<String, Integer>>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Get the IP of any server connected to the proxy
+
+
service(Class<T>) - Static method in class me.lucko.helper.Helper
+
 
+
ServiceCallback<T> - Class in me.lucko.helper.utils
+
+
A wrapper to always provide the latest instance of a service.
+
+
serviceNullable(Class<T>) - Static method in class me.lucko.helper.Helper
+
 
+
services() - Static method in class me.lucko.helper.Helper
+
 
+
setAllowFriendlyFire(boolean) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setAllowFriendlyFire(boolean) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the friendly fire setting to new value and updates the teams subscribers
+
+
setCanSeeFriendlyInvisibles(boolean) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setCanSeeFriendlyInvisibles(boolean) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the friendly invisibility setting to new value and updates the teams subscribers
+
+
setClickCallback(Consumer<Player>) - Method in interface me.lucko.helper.hologram.Hologram
+
+
Sets a click callback for this hologram
+
+
setCollisionRule(ScoreboardTeam.CollisionRule) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setCollisionRule(ScoreboardTeam.CollisionRule) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the collision rule setting to new value and updates the teams subscribers
+
+
setDisplayName(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
setDisplayName(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setDisplayName(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Lazily sets the display name to a new value and updates the objectives subscribers
+
+
setDisplayName(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the display name to a new value and updates the teams subscribers
+
+
setDisplaySlot(DisplaySlot) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
setDisplaySlot(DisplaySlot) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Lazily sets the display slot to a new value and updates the objectives subscribers
+
+
setFallbackGui(Function<Player, Gui>) - Method in class me.lucko.helper.menu.Gui
+
 
+
setItem(int, Item) - Method in class me.lucko.helper.menu.Gui
+
 
+
setItem(ItemStack) - Method in class me.lucko.helper.menu.Slot
+
+
Sets the item in this slot
+
+
setItems(Item, int...) - Method in class me.lucko.helper.menu.Gui
+
 
+
setItems(Iterable<Integer>, Item) - Method in class me.lucko.helper.menu.Gui
+
 
+
setNameTagVisibility(ScoreboardTeam.NameTagVisibility) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setNameTagVisibility(ScoreboardTeam.NameTagVisibility) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the nametag visibility setting to new value and updates the teams subscribers
+
+
setPrefix(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setPrefix(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the prefix to a new value and updates the teams subscribers
+
+
setScore(String, int) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
setScore(String, int) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Sets a new score value
+
+
setSuffix(String) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
setSuffix(String) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Lazily sets the suffix to a new value and updates the teams subscribers
+
+
setup(TerminableConsumer) - Method in interface me.lucko.helper.terminable.composite.CompositeTerminable
+
+
Binds this composite terminable with a terminable consumer
+
+
severe(String) - Static method in class me.lucko.helper.utils.Log
+
 
+
shouldExpire() - Method in class me.lucko.helper.metadata.ExpiringValue
+
 
+
shouldExpire() - Method in class me.lucko.helper.metadata.SoftValue
+
 
+
shouldExpire() - Method in interface me.lucko.helper.metadata.TransientValue
+
+
Returns if this value should be removed from the map
+
+
shouldExpire() - Method in class me.lucko.helper.metadata.WeakValue
+
 
+
showAttributes() - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
SimpleTerminableRegistry - Class in me.lucko.helper.terminable.registry
+
 
+
SimpleTerminableRegistry() - Constructor for class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
Slot - Class in me.lucko.helper.menu
+
+
Represents a slot in a Gui.
+
+
Slot(Gui, int) - Constructor for class me.lucko.helper.menu.Slot
+
 
+
SoftValue<T> - Class in me.lucko.helper.metadata
+
+
Represents a value wrapped in a SoftReference
+
+
spawn() - Method in interface me.lucko.helper.hologram.Hologram
+
+
Spawns the hologram
+
+
spawnEffect(Player, Location, Effect) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnEffect(Location, Effect) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnEffect(Player, Location, Effect, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnEffect(Location, Effect, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticle(Player, Location, Particle) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticle(Location, Particle) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticle(Player, Location, Particle, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticle(Location, Particle, int) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticleOffset(Player, Location, Particle, double) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticleOffset(Location, Particle, double) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticleOffset(Player, Location, Particle, int, double) - Static method in class me.lucko.helper.utils.Players
+
 
+
spawnParticleOffset(Location, Particle, int, double) - Static method in class me.lucko.helper.utils.Players
+
 
+
STAINED_GLASS - Static variable in class me.lucko.helper.menu.scheme.StandardSchemeMappings
+
 
+
STAINED_GLASS_BLOCK - Static variable in class me.lucko.helper.menu.scheme.StandardSchemeMappings
+
 
+
StandardSchemeMappings - Class in me.lucko.helper.menu.scheme
+
+
Contains a number of default SchemeMappings.
+
+
start(T) - Static method in interface me.lucko.helper.function.chain.Chain
+
+
Creates a new chain
+
+
stop() - Method in interface me.lucko.helper.Scheduler.Task
+
+
Stops the task
+
+
stream() - Static method in class me.lucko.helper.utils.Players
+
+
Gets a stream of all players on the server.
+
+
streamInRange(Location, double) - Static method in class me.lucko.helper.utils.Players
+
+
Gets a stream of all players within a given radius of a point
+
+
streamOffline() - Static method in class me.lucko.helper.utils.Players
+
 
+
subscribe(Class<T>) - Static method in class me.lucko.helper.Events
+
+
Makes a HandlerBuilder for a given event
+
+
subscribe(Class<T>, EventPriority) - Static method in class me.lucko.helper.Events
+
+
Makes a HandlerBuilder for a given event
+
+
subscribe(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
subscribe(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
subscribe(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Subscribes a player to this objective
+
+
subscribe(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Subscribes a player to this team
+
+
subtract(Vector3i) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
subtract(int, int, int) - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
subtract(Vector2i) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
subtract(int, int) - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
subtract(double, double, double) - Method in class me.lucko.helper.serialize.Point
+
 
+
subtract(Vector3i) - Method in class me.lucko.helper.serialize.Position
+
 
+
subtract(Vector3d) - Method in class me.lucko.helper.serialize.Position
+
 
+
subtract(double, double, double) - Method in class me.lucko.helper.serialize.Position
+
 
+
supplyAsync(Supplier<T>) - Static method in class me.lucko.helper.Scheduler
+
+
Compute the result of the passed supplier asynchronously
+
+
supplyLaterAsync(Supplier<T>, long) - Static method in class me.lucko.helper.Scheduler
+
+
Compute the result of the passed supplier asynchronously at some point in the future
+
+
supplyLaterSync(Supplier<T>, long) - Static method in class me.lucko.helper.Scheduler
+
+
Compute the result of the passed supplier on the main thread at some point in the future
+
+
supplySync(Supplier<T>) - Static method in class me.lucko.helper.Scheduler
+
+
Compute the result of the passed supplier on the main thread
+
+
sync() - Static method in class me.lucko.helper.Scheduler
+
+
Get an Executor instance which will execute all passed runnables on the main server thread.
+
+
+ + + +

T

+
+
Terminable - Interface in me.lucko.helper.terminable
+
+
Represents an object that can be unregistered, stopped, or gracefully halted.
+
+
TerminableConsumer - Interface in me.lucko.helper.terminable
+
+
Accepts Terminables.
+
+
TerminableRegistry - Interface in me.lucko.helper.terminable.registry
+
+
Represents a registry of Terminables.
+
+
Terminables - Class in me.lucko.helper.terminable
+
 
+
terminate() - Method in interface me.lucko.helper.Events.Handler
+
 
+
terminate() - Method in interface me.lucko.helper.Events.MergedHandler
+
 
+
terminate() - Method in class me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+
 
+
terminate() - Method in interface me.lucko.helper.terminable.Terminable
+
+
Terminate this instance
+
+
terminate() - Method in class me.lucko.helper.utils.ServiceCallback
+
 
+
test() - Method in class me.lucko.helper.utils.Cooldown
+
+
Returns true if the cooldown is not active, and then resets the timer
+
+
test(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
testSilently() - Method in class me.lucko.helper.utils.Cooldown
+
+
Returns true if the cooldown is not active
+
+
testSilently(T) - Method in class me.lucko.helper.utils.CooldownCollection
+
 
+
timeout - Variable in class me.lucko.helper.utils.Cooldown
+
 
+
TimeUtil - Class in me.lucko.helper.utils
+
 
+
Timings - Class in me.lucko.helper.timings
+
+
Provides access to a TimingManager
+
+
title(String) - Method in class me.lucko.helper.menu.paginated.PaginatedGuiBuilder
+
 
+
toBiMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toBlock() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toChunk() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toChunk() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
toList() - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toLocation() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toLocation() - Method in class me.lucko.helper.serialize.Point
+
 
+
toLocation() - Method in class me.lucko.helper.serialize.Position
+
 
+
toLongForm(long) - Static method in class me.lucko.helper.utils.TimeUtil
+
 
+
toMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toPosition() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toPositionCenter() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toSet() - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toShortForm(long) - Static method in class me.lucko.helper.utils.TimeUtil
+
 
+
toSortedMap(Comparator<? super K>, Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toSortedSet(Comparator<? super E>) - Static method in class me.lucko.helper.utils.ImmutableCollectors
+
 
+
toString(JsonElement) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
toString() - Method in class me.lucko.helper.maven.LibraryLoader.Dependency
+
 
+
toString() - Method in class me.lucko.helper.metadata.Empty
+
 
+
toString() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toString() - Method in class me.lucko.helper.serialize.BlockRegion
+
 
+
toString() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
toString() - Method in class me.lucko.helper.serialize.ChunkRegion
+
 
+
toString() - Method in class me.lucko.helper.serialize.Direction
+
 
+
toString() - Method in class me.lucko.helper.serialize.Point
+
 
+
toString() - Method in class me.lucko.helper.serialize.Position
+
 
+
toString() - Method in class me.lucko.helper.serialize.Region
+
 
+
toString() - Method in class me.lucko.helper.utils.ServiceCallback
+
 
+
toStringPretty(JsonElement) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
toVector() - Method in class me.lucko.helper.serialize.BlockPosition
+
 
+
toVector() - Method in class me.lucko.helper.serialize.ChunkPosition
+
 
+
toVector() - Method in class me.lucko.helper.serialize.Position
+
 
+
transform(Consumer<ItemStack>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
transformMeta(Consumer<ItemMeta>) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
transformRunnable(Runnable) - Static method in class me.lucko.helper.menu.Item
+
 
+
TransientValue<T> - Interface in me.lucko.helper.metadata
+
+
Represents a value in a MetadataMap which will automatically expire at some point.
+
+
tryConsume(Consumer<Slot>) - Method in class me.lucko.helper.menu.scheme.MenuPopulator
+
 
+
type(Material) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
type - Variable in class me.lucko.helper.serialize.GsonStorageHandler
+
 
+
TypeAware<T> - Interface in me.lucko.helper.interfaces
+
+
Represents an object that knows it's own type parameter.
+
+
+ + + +

U

+
+
unflag(ItemFlag...) - Method in class me.lucko.helper.item.ItemStackBuilder
+
 
+
unregister() - Method in interface me.lucko.helper.Events.Handler
+
+
Unregisters the handler
+
+
unregister() - Method in interface me.lucko.helper.Events.MergedHandler
+
+
Unregisters the handler
+
+
unsubscribe(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
unsubscribe(Player, boolean) - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
unsubscribe(Player) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
unsubscribe(Player, boolean) - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
unsubscribe(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Unsubscribes a player from this objective
+
+
unsubscribe(Player, boolean) - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Unsubscribes a player from this objective
+
+
unsubscribe(Player) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Unsubscribes a player from this team
+
+
unsubscribe(Player, boolean) - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Unsubscribes a player from this team
+
+
unsubscribeAll() - Method in class me.lucko.helper.scoreboard.PacketScoreboardObjective
+
 
+
unsubscribeAll() - Method in class me.lucko.helper.scoreboard.PacketScoreboardTeam
+
 
+
unsubscribeAll() - Method in interface me.lucko.helper.scoreboard.ScoreboardObjective
+
+
Unsubscribes all players from this objective
+
+
unsubscribeAll() - Method in interface me.lucko.helper.scoreboard.ScoreboardTeam
+
+
Unsubscribes all players from this team
+
+
updateContent(List<Item>) - Method in class me.lucko.helper.menu.paginated.PaginatedGui
+
 
+
updateLines(List<String>) - Method in interface me.lucko.helper.hologram.Hologram
+
+
Updates the lines displayed by this hologram
+
+
updatePosition(Position) - Method in interface me.lucko.helper.hologram.Hologram
+
+
Updates the position of the hologram and respawns it
+
+
uuid(Player, Consumer<UUID>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Get the UUID of a player
+
+
uuidOther(String, Consumer<UUID>) - Static method in class me.lucko.helper.messaging.bungee.BungeeMessaging
+
+
Get the UUID of any player connected to the proxy
+
+
+ + + +

V

+
+
valueOf(String) - Static method in enum me.lucko.helper.scoreboard.ScoreboardTeam.CollisionRule
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum me.lucko.helper.scoreboard.ScoreboardTeam.NameTagVisibility
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum me.lucko.helper.scoreboard.ScoreboardTeam.CollisionRule
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum me.lucko.helper.scoreboard.ScoreboardTeam.NameTagVisibility
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
VectorSerializers - Class in me.lucko.helper.serialize
+
+
Utility for serializing and deserializing flowpowered Vector instances
+
+
+ + + +

W

+
+
warn(String) - Static method in class me.lucko.helper.utils.Log
+
 
+
WeakValue<T> - Class in me.lucko.helper.metadata
+
+
Represents a value wrapped in a WeakReference
+
+
withCooldown(Cooldown) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the command attempt against the given cooldown.
+
+
withCooldown(Cooldown, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the command attempt against the given cooldown.
+
+
withCooldown(CooldownCollection<T>) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the command attempt against the given cooldown.
+
+
withCooldown(CooldownCollection<T>, String) - Method in interface me.lucko.helper.Commands.CommandBuilder
+
+
Tests the command attempt against the given cooldown.
+
+
withCooldown(Cooldown) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(Cooldown, BiConsumer<Cooldown, ? super T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(CooldownCollection<? super T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(CooldownCollection<? super T>, BiConsumer<Cooldown, ? super T>) - Method in interface me.lucko.helper.Events.HandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(Cooldown) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(Cooldown, BiConsumer<Cooldown, ? super T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(CooldownCollection<? super T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withCooldown(CooldownCollection<? super T>, BiConsumer<Cooldown, ? super T>) - Method in interface me.lucko.helper.Events.MergedHandlerBuilder
+
+
Adds a filter to the handler, only allowing it to pass if Cooldown.test() returns true.
+
+
withDirection(Direction) - Method in class me.lucko.helper.serialize.Position
+
 
+
WOOL - Static variable in class me.lucko.helper.menu.scheme.StandardSchemeMappings
+
 
+
world(String) - Static method in class me.lucko.helper.Helper
+
 
+
worldNullable(String) - Static method in class me.lucko.helper.Helper
+
 
+
writeElement(Appendable, JsonElement) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
writeElementPretty(Appendable, JsonElement) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
writeObject(Appendable, JsonObject) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
writeObjectPretty(Appendable, JsonObject) - Static method in class me.lucko.helper.gson.GsonProvider
+
 
+
+ + + +

Z

+
+
ZERO - Static variable in class me.lucko.helper.serialize.Direction
+
 
+
+A B C D E F G H I J K L M N O P R S T U V W Z 
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/index.html b/docs/javadoc/helper/index.html new file mode 100644 index 00000000..3aa77207 --- /dev/null +++ b/docs/javadoc/helper/index.html @@ -0,0 +1,76 @@ + + + + + + +helper 2.1.5 API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/javadoc/helper/me/lucko/helper/Commands.CommandBuilder.html b/docs/javadoc/helper/me/lucko/helper/Commands.CommandBuilder.html new file mode 100644 index 00000000..459e39dd --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Commands.CommandBuilder.html @@ -0,0 +1,697 @@ + + + + + + +Commands.CommandBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Commands.CommandBuilder<T extends CommandSender>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Commands.CommandContext.html b/docs/javadoc/helper/me/lucko/helper/Commands.CommandContext.html new file mode 100644 index 00000000..7ce627d6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Commands.CommandContext.html @@ -0,0 +1,325 @@ + + + + + + +Commands.CommandContext (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Commands.CommandContext<T extends CommandSender>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Commands.CommandHandler.html b/docs/javadoc/helper/me/lucko/helper/Commands.CommandHandler.html new file mode 100644 index 00000000..b1259441 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Commands.CommandHandler.html @@ -0,0 +1,245 @@ + + + + + + +Commands.CommandHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Commands.CommandHandler<T extends CommandSender>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Commands.FunctionalCommand.html b/docs/javadoc/helper/me/lucko/helper/Commands.FunctionalCommand.html new file mode 100644 index 00000000..ce5b9cde --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Commands.FunctionalCommand.html @@ -0,0 +1,259 @@ + + + + + + +Commands.FunctionalCommand (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Commands.FunctionalCommand

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Commands.html b/docs/javadoc/helper/me/lucko/helper/Commands.html new file mode 100644 index 00000000..06416cdb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Commands.html @@ -0,0 +1,375 @@ + + + + + + +Commands (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Class Commands

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.DefaultFilters.html b/docs/javadoc/helper/me/lucko/helper/Events.DefaultFilters.html new file mode 100644 index 00000000..52593f7e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.DefaultFilters.html @@ -0,0 +1,378 @@ + + + + + + +Events.DefaultFilters (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Events.DefaultFilters

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.Handler.html b/docs/javadoc/helper/me/lucko/helper/Events.Handler.html new file mode 100644 index 00000000..6453cbba --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.Handler.html @@ -0,0 +1,370 @@ + + + + + + +Events.Handler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Events.Handler<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.HandlerBuilder.html b/docs/javadoc/helper/me/lucko/helper/Events.HandlerBuilder.html new file mode 100644 index 00000000..b3fb9506 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.HandlerBuilder.html @@ -0,0 +1,467 @@ + + + + + + +Events.HandlerBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Events.HandlerBuilder<T extends Event>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.MergedHandler.html b/docs/javadoc/helper/me/lucko/helper/Events.MergedHandler.html new file mode 100644 index 00000000..0d6b7e90 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.MergedHandler.html @@ -0,0 +1,390 @@ + + + + + + +Events.MergedHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Events.MergedHandler<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.MergedHandlerBuilder.html b/docs/javadoc/helper/me/lucko/helper/Events.MergedHandlerBuilder.html new file mode 100644 index 00000000..ffd3a938 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.MergedHandlerBuilder.html @@ -0,0 +1,526 @@ + + + + + + +Events.MergedHandlerBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Events.MergedHandlerBuilder<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Events.html b/docs/javadoc/helper/me/lucko/helper/Events.html new file mode 100644 index 00000000..83e60a56 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Events.html @@ -0,0 +1,531 @@ + + + + + + +Events (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Class Events

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Helper.html b/docs/javadoc/helper/me/lucko/helper/Helper.html new file mode 100644 index 00000000..29377b9f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Helper.html @@ -0,0 +1,380 @@ + + + + + + +Helper (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Class Helper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Scheduler.Task.html b/docs/javadoc/helper/me/lucko/helper/Scheduler.Task.html new file mode 100644 index 00000000..10996e7a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Scheduler.Task.html @@ -0,0 +1,303 @@ + + + + + + +Scheduler.Task (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Interface Scheduler.Task

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/Scheduler.html b/docs/javadoc/helper/me/lucko/helper/Scheduler.html new file mode 100644 index 00000000..1723e93c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/Scheduler.html @@ -0,0 +1,756 @@ + + + + + + +Scheduler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper
+

Class Scheduler

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandBuilder.html b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandBuilder.html new file mode 100644 index 00000000..80f15982 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandBuilder.html @@ -0,0 +1,287 @@ + + + + + + +Uses of Interface me.lucko.helper.Commands.CommandBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Commands.CommandBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandContext.html b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandContext.html new file mode 100644 index 00000000..655d8b8c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandContext.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Interface me.lucko.helper.Commands.CommandContext (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Commands.CommandContext

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandHandler.html b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandHandler.html new file mode 100644 index 00000000..78290160 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.CommandHandler.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface me.lucko.helper.Commands.CommandHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Commands.CommandHandler

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Commands.FunctionalCommand.html b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.FunctionalCommand.html new file mode 100644 index 00000000..0829bcea --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.FunctionalCommand.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface me.lucko.helper.Commands.FunctionalCommand (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Commands.FunctionalCommand

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Commands.html b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.html new file mode 100644 index 00000000..c8c03511 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Commands.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.Commands (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.Commands

+
+
No usage of me.lucko.helper.Commands
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.DefaultFilters.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.DefaultFilters.html new file mode 100644 index 00000000..bbdf4bbd --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.DefaultFilters.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface me.lucko.helper.Events.DefaultFilters (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Events.DefaultFilters

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.Handler.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.Handler.html new file mode 100644 index 00000000..cdaf1fbb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.Handler.html @@ -0,0 +1,189 @@ + + + + + + +Uses of Interface me.lucko.helper.Events.Handler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Events.Handler

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.HandlerBuilder.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.HandlerBuilder.html new file mode 100644 index 00000000..411e44bc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.HandlerBuilder.html @@ -0,0 +1,226 @@ + + + + + + +Uses of Interface me.lucko.helper.Events.HandlerBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Events.HandlerBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandler.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandler.html new file mode 100644 index 00000000..6c7936fb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandler.html @@ -0,0 +1,189 @@ + + + + + + +Uses of Interface me.lucko.helper.Events.MergedHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Events.MergedHandler

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandlerBuilder.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandlerBuilder.html new file mode 100644 index 00000000..b1900238 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.MergedHandlerBuilder.html @@ -0,0 +1,255 @@ + + + + + + +Uses of Interface me.lucko.helper.Events.MergedHandlerBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Events.MergedHandlerBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Events.html b/docs/javadoc/helper/me/lucko/helper/class-use/Events.html new file mode 100644 index 00000000..afc3c3a3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Events.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.Events (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.Events

+
+
No usage of me.lucko.helper.Events
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Helper.html b/docs/javadoc/helper/me/lucko/helper/class-use/Helper.html new file mode 100644 index 00000000..c3af958c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Helper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.Helper (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.Helper

+
+
No usage of me.lucko.helper.Helper
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.Task.html b/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.Task.html new file mode 100644 index 00000000..c41951a4 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.Task.html @@ -0,0 +1,219 @@ + + + + + + +Uses of Interface me.lucko.helper.Scheduler.Task (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.Scheduler.Task

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.html b/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.html new file mode 100644 index 00000000..5165cbbb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/class-use/Scheduler.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.Scheduler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.Scheduler

+
+
No usage of me.lucko.helper.Scheduler
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/Numbers.html b/docs/javadoc/helper/me/lucko/helper/function/Numbers.html new file mode 100644 index 00000000..cd13f573 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/Numbers.html @@ -0,0 +1,468 @@ + + + + + + +Numbers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.function
+

Class Numbers

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/Chain.html b/docs/javadoc/helper/me/lucko/helper/function/chain/Chain.html new file mode 100644 index 00000000..64d32b72 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/Chain.html @@ -0,0 +1,671 @@ + + + + + + +Chain (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.function.chain
+

Interface Chain<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/class-use/Chain.html b/docs/javadoc/helper/me/lucko/helper/function/chain/class-use/Chain.html new file mode 100644 index 00000000..3b8233c8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/class-use/Chain.html @@ -0,0 +1,288 @@ + + + + + + +Uses of Interface me.lucko.helper.function.chain.Chain (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.function.chain.Chain

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/package-frame.html b/docs/javadoc/helper/me/lucko/helper/function/chain/package-frame.html new file mode 100644 index 00000000..e53d698d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.function.chain (helper 2.1.5 API) + + + + + +

me.lucko.helper.function.chain

+
+

Interfaces

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/package-summary.html b/docs/javadoc/helper/me/lucko/helper/function/chain/package-summary.html new file mode 100644 index 00000000..d671def1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.function.chain (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.function.chain

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/package-tree.html b/docs/javadoc/helper/me/lucko/helper/function/chain/package-tree.html new file mode 100644 index 00000000..50c69f81 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/package-tree.html @@ -0,0 +1,135 @@ + + + + + + +me.lucko.helper.function.chain Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.function.chain

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/chain/package-use.html b/docs/javadoc/helper/me/lucko/helper/function/chain/package-use.html new file mode 100644 index 00000000..4028d3a6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/chain/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package me.lucko.helper.function.chain (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.function.chain

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/class-use/Numbers.html b/docs/javadoc/helper/me/lucko/helper/function/class-use/Numbers.html new file mode 100644 index 00000000..61dd756f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/class-use/Numbers.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.function.Numbers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.function.Numbers

+
+
No usage of me.lucko.helper.function.Numbers
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/package-frame.html b/docs/javadoc/helper/me/lucko/helper/function/package-frame.html new file mode 100644 index 00000000..95528805 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.function (helper 2.1.5 API) + + + + + +

me.lucko.helper.function

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/package-summary.html b/docs/javadoc/helper/me/lucko/helper/function/package-summary.html new file mode 100644 index 00000000..dbd19db1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/package-summary.html @@ -0,0 +1,147 @@ + + + + + + +me.lucko.helper.function (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.function

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/package-tree.html b/docs/javadoc/helper/me/lucko/helper/function/package-tree.html new file mode 100644 index 00000000..0af6cb2f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +me.lucko.helper.function Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.function

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/function/package-use.html b/docs/javadoc/helper/me/lucko/helper/function/package-use.html new file mode 100644 index 00000000..dfdd55b7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/function/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.function (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.function

+
+
No usage of me.lucko.helper.function
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/GsonProvider.html b/docs/javadoc/helper/me/lucko/helper/gson/GsonProvider.html new file mode 100644 index 00000000..fc086b24 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/GsonProvider.html @@ -0,0 +1,383 @@ + + + + + + +GsonProvider (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Class GsonProvider

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializable.html b/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializable.html new file mode 100644 index 00000000..1411efce --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializable.html @@ -0,0 +1,299 @@ + + + + + + +GsonSerializable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Interface GsonSerializable

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializableAdapterFactory.html b/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializableAdapterFactory.html new file mode 100644 index 00000000..8bb0219e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/GsonSerializableAdapterFactory.html @@ -0,0 +1,287 @@ + + + + + + +GsonSerializableAdapterFactory (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Class GsonSerializableAdapterFactory

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonArrayBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonArrayBuilder.html new file mode 100644 index 00000000..cb7d9f34 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonArrayBuilder.html @@ -0,0 +1,478 @@ + + + + + + +JsonBuilder.JsonArrayBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Interface JsonBuilder.JsonArrayBuilder

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonObjectBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonObjectBuilder.html new file mode 100644 index 00000000..b5597e0b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.JsonObjectBuilder.html @@ -0,0 +1,809 @@ + + + + + + +JsonBuilder.JsonObjectBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Interface JsonBuilder.JsonObjectBuilder

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.html new file mode 100644 index 00000000..b6d54e0f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/JsonBuilder.html @@ -0,0 +1,712 @@ + + + + + + +JsonBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.gson
+

Class JsonBuilder

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonProvider.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonProvider.html new file mode 100644 index 00000000..eef0a8d2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.gson.GsonProvider (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.gson.GsonProvider

+
+
No usage of me.lucko.helper.gson.GsonProvider
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializable.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializable.html new file mode 100644 index 00000000..6fe628aa --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializable.html @@ -0,0 +1,309 @@ + + + + + + +Uses of Interface me.lucko.helper.gson.GsonSerializable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.gson.GsonSerializable

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializableAdapterFactory.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializableAdapterFactory.html new file mode 100644 index 00000000..2feca57f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/GsonSerializableAdapterFactory.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class me.lucko.helper.gson.GsonSerializableAdapterFactory (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.gson.GsonSerializableAdapterFactory

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonArrayBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonArrayBuilder.html new file mode 100644 index 00000000..772abd15 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonArrayBuilder.html @@ -0,0 +1,275 @@ + + + + + + +Uses of Interface me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.gson.JsonBuilder.JsonArrayBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonObjectBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonObjectBuilder.html new file mode 100644 index 00000000..16729250 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.JsonObjectBuilder.html @@ -0,0 +1,363 @@ + + + + + + +Uses of Interface me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.gson.JsonBuilder.JsonObjectBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.html b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.html new file mode 100644 index 00000000..853e6bf3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/class-use/JsonBuilder.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.gson.JsonBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.gson.JsonBuilder

+
+
No usage of me.lucko.helper.gson.JsonBuilder
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/package-frame.html b/docs/javadoc/helper/me/lucko/helper/gson/package-frame.html new file mode 100644 index 00000000..f5808369 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +me.lucko.helper.gson (helper 2.1.5 API) + + + + + +

me.lucko.helper.gson

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/package-summary.html b/docs/javadoc/helper/me/lucko/helper/gson/package-summary.html new file mode 100644 index 00000000..ff80d560 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/package-summary.html @@ -0,0 +1,185 @@ + + + + + + +me.lucko.helper.gson (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.gson

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/package-tree.html b/docs/javadoc/helper/me/lucko/helper/gson/package-tree.html new file mode 100644 index 00000000..bd3d016b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/package-tree.html @@ -0,0 +1,156 @@ + + + + + + +me.lucko.helper.gson Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.gson

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/gson/package-use.html b/docs/javadoc/helper/me/lucko/helper/gson/package-use.html new file mode 100644 index 00000000..0d5eb4d7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/gson/package-use.html @@ -0,0 +1,216 @@ + + + + + + +Uses of Package me.lucko.helper.gson (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.gson

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/Hologram.html b/docs/javadoc/helper/me/lucko/helper/hologram/Hologram.html new file mode 100644 index 00000000..cf286d81 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/Hologram.html @@ -0,0 +1,388 @@ + + + + + + +Hologram (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.hologram
+

Interface Hologram

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/class-use/Hologram.html b/docs/javadoc/helper/me/lucko/helper/hologram/class-use/Hologram.html new file mode 100644 index 00000000..84191cce --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/class-use/Hologram.html @@ -0,0 +1,173 @@ + + + + + + +Uses of Interface me.lucko.helper.hologram.Hologram (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.hologram.Hologram

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/package-frame.html b/docs/javadoc/helper/me/lucko/helper/hologram/package-frame.html new file mode 100644 index 00000000..1155e8b6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.hologram (helper 2.1.5 API) + + + + + +

me.lucko.helper.hologram

+
+

Interfaces

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/package-summary.html b/docs/javadoc/helper/me/lucko/helper/hologram/package-summary.html new file mode 100644 index 00000000..9dce7292 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.hologram (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.hologram

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/package-tree.html b/docs/javadoc/helper/me/lucko/helper/hologram/package-tree.html new file mode 100644 index 00000000..bb9dcc13 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +me.lucko.helper.hologram Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.hologram

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/hologram/package-use.html b/docs/javadoc/helper/me/lucko/helper/hologram/package-use.html new file mode 100644 index 00000000..ed669357 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/hologram/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package me.lucko.helper.hologram (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.hologram

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/Delegate.html b/docs/javadoc/helper/me/lucko/helper/interfaces/Delegate.html new file mode 100644 index 00000000..15e2ea6e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/Delegate.html @@ -0,0 +1,248 @@ + + + + + + +Delegate (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.interfaces
+

Interface Delegate<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/TypeAware.html b/docs/javadoc/helper/me/lucko/helper/interfaces/TypeAware.html new file mode 100644 index 00000000..8f9986e0 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/TypeAware.html @@ -0,0 +1,233 @@ + + + + + + +TypeAware (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.interfaces
+

Interface TypeAware<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/Delegate.html b/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/Delegate.html new file mode 100644 index 00000000..06014cd8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/Delegate.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface me.lucko.helper.interfaces.Delegate (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.interfaces.Delegate

+
+
No usage of me.lucko.helper.interfaces.Delegate
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/TypeAware.html b/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/TypeAware.html new file mode 100644 index 00000000..d47011d2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/class-use/TypeAware.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Interface me.lucko.helper.interfaces.TypeAware (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.interfaces.TypeAware

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/package-frame.html b/docs/javadoc/helper/me/lucko/helper/interfaces/package-frame.html new file mode 100644 index 00000000..16d218f7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.interfaces (helper 2.1.5 API) + + + + + +

me.lucko.helper.interfaces

+
+

Interfaces

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/package-summary.html b/docs/javadoc/helper/me/lucko/helper/interfaces/package-summary.html new file mode 100644 index 00000000..3ec0ae18 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +me.lucko.helper.interfaces (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.interfaces

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/package-tree.html b/docs/javadoc/helper/me/lucko/helper/interfaces/package-tree.html new file mode 100644 index 00000000..b2df1437 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/package-tree.html @@ -0,0 +1,136 @@ + + + + + + +me.lucko.helper.interfaces Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.interfaces

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/interfaces/package-use.html b/docs/javadoc/helper/me/lucko/helper/interfaces/package-use.html new file mode 100644 index 00000000..d5734042 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/interfaces/package-use.html @@ -0,0 +1,182 @@ + + + + + + +Uses of Package me.lucko.helper.interfaces (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.interfaces

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/ItemStackBuilder.html b/docs/javadoc/helper/me/lucko/helper/item/ItemStackBuilder.html new file mode 100644 index 00000000..84ab62a2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/ItemStackBuilder.html @@ -0,0 +1,675 @@ + + + + + + +ItemStackBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.item
+

Class ItemStackBuilder

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/class-use/ItemStackBuilder.html b/docs/javadoc/helper/me/lucko/helper/item/class-use/ItemStackBuilder.html new file mode 100644 index 00000000..dff59842 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/class-use/ItemStackBuilder.html @@ -0,0 +1,268 @@ + + + + + + +Uses of Class me.lucko.helper.item.ItemStackBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.item.ItemStackBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/package-frame.html b/docs/javadoc/helper/me/lucko/helper/item/package-frame.html new file mode 100644 index 00000000..c4c0d8b4 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.item (helper 2.1.5 API) + + + + + +

me.lucko.helper.item

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/package-summary.html b/docs/javadoc/helper/me/lucko/helper/item/package-summary.html new file mode 100644 index 00000000..d359e69f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.item (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.item

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/package-tree.html b/docs/javadoc/helper/me/lucko/helper/item/package-tree.html new file mode 100644 index 00000000..184c3b89 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +me.lucko.helper.item Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.item

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/item/package-use.html b/docs/javadoc/helper/me/lucko/helper/item/package-use.html new file mode 100644 index 00000000..d1366c20 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/item/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package me.lucko.helper.item (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.item

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.Dependency.html b/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.Dependency.html new file mode 100644 index 00000000..312c80b8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.Dependency.html @@ -0,0 +1,392 @@ + + + + + + +LibraryLoader.Dependency (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.maven
+

Class LibraryLoader.Dependency

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.html b/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.html new file mode 100644 index 00000000..26a60a69 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/LibraryLoader.html @@ -0,0 +1,371 @@ + + + + + + +LibraryLoader (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.maven
+

Class LibraryLoader

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/MavenLibraries.html b/docs/javadoc/helper/me/lucko/helper/maven/MavenLibraries.html new file mode 100644 index 00000000..508e52f4 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/MavenLibraries.html @@ -0,0 +1,222 @@ + + + + + + +MavenLibraries (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.maven
+

Annotation Type MavenLibraries

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/MavenLibrary.html b/docs/javadoc/helper/me/lucko/helper/maven/MavenLibrary.html new file mode 100644 index 00000000..c772456a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/MavenLibrary.html @@ -0,0 +1,318 @@ + + + + + + +MavenLibrary (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.maven
+

Annotation Type MavenLibrary

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/Repository.html b/docs/javadoc/helper/me/lucko/helper/maven/Repository.html new file mode 100644 index 00000000..89031527 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/Repository.html @@ -0,0 +1,225 @@ + + + + + + +Repository (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.maven
+

Annotation Type Repository

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.Dependency.html b/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.Dependency.html new file mode 100644 index 00000000..0377c4ff --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.Dependency.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class me.lucko.helper.maven.LibraryLoader.Dependency (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.maven.LibraryLoader.Dependency

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.html b/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.html new file mode 100644 index 00000000..06de192f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/class-use/LibraryLoader.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.maven.LibraryLoader (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.maven.LibraryLoader

+
+
No usage of me.lucko.helper.maven.LibraryLoader
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibraries.html b/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibraries.html new file mode 100644 index 00000000..4fdafb9d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibraries.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.maven.MavenLibraries (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.maven.MavenLibraries

+
+
No usage of me.lucko.helper.maven.MavenLibraries
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibrary.html b/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibrary.html new file mode 100644 index 00000000..1ff2a52b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/class-use/MavenLibrary.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.maven.MavenLibrary (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.maven.MavenLibrary

+
+
No usage of me.lucko.helper.maven.MavenLibrary
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/class-use/Repository.html b/docs/javadoc/helper/me/lucko/helper/maven/class-use/Repository.html new file mode 100644 index 00000000..158b5d0b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/class-use/Repository.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.maven.Repository (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.maven.Repository

+
+
No usage of me.lucko.helper.maven.Repository
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/package-frame.html b/docs/javadoc/helper/me/lucko/helper/maven/package-frame.html new file mode 100644 index 00000000..222e5330 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/package-frame.html @@ -0,0 +1,28 @@ + + + + + + +me.lucko.helper.maven (helper 2.1.5 API) + + + + + +

me.lucko.helper.maven

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/package-summary.html b/docs/javadoc/helper/me/lucko/helper/maven/package-summary.html new file mode 100644 index 00000000..0d59daef --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/package-summary.html @@ -0,0 +1,180 @@ + + + + + + +me.lucko.helper.maven (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.maven

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/package-tree.html b/docs/javadoc/helper/me/lucko/helper/maven/package-tree.html new file mode 100644 index 00000000..d1c67cb8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/package-tree.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.maven Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.maven

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/maven/package-use.html b/docs/javadoc/helper/me/lucko/helper/maven/package-use.html new file mode 100644 index 00000000..dc3efeb5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/maven/package-use.html @@ -0,0 +1,159 @@ + + + + + + +Uses of Package me.lucko.helper.maven (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.maven

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/Gui.html b/docs/javadoc/helper/me/lucko/helper/menu/Gui.html new file mode 100644 index 00000000..8b5e8275 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/Gui.html @@ -0,0 +1,734 @@ + + + + + + +Gui (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu
+

Class Gui

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/Item.Builder.html b/docs/javadoc/helper/me/lucko/helper/menu/Item.Builder.html new file mode 100644 index 00000000..82342eed --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/Item.Builder.html @@ -0,0 +1,347 @@ + + + + + + +Item.Builder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu
+

Class Item.Builder

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/Item.html b/docs/javadoc/helper/me/lucko/helper/menu/Item.html new file mode 100644 index 00000000..dafac371 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/Item.html @@ -0,0 +1,358 @@ + + + + + + +Item (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu
+

Class Item

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/Slot.html b/docs/javadoc/helper/me/lucko/helper/menu/Slot.html new file mode 100644 index 00000000..4dd8c9d6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/Slot.html @@ -0,0 +1,629 @@ + + + + + + +Slot (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu
+

Class Slot

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/class-use/Gui.html b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Gui.html new file mode 100644 index 00000000..cd6f60ab --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Gui.html @@ -0,0 +1,285 @@ + + + + + + +Uses of Class me.lucko.helper.menu.Gui (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.Gui

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.Builder.html b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.Builder.html new file mode 100644 index 00000000..1f3ac887 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.Builder.html @@ -0,0 +1,216 @@ + + + + + + +Uses of Class me.lucko.helper.menu.Item.Builder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.Item.Builder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.html b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.html new file mode 100644 index 00000000..02bdaaec --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Item.html @@ -0,0 +1,394 @@ + + + + + + +Uses of Class me.lucko.helper.menu.Item (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.Item

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/class-use/Slot.html b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Slot.html new file mode 100644 index 00000000..20b08a95 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/class-use/Slot.html @@ -0,0 +1,273 @@ + + + + + + +Uses of Class me.lucko.helper.menu.Slot (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.Slot

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/package-frame.html b/docs/javadoc/helper/me/lucko/helper/menu/package-frame.html new file mode 100644 index 00000000..8e306ad7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +me.lucko.helper.menu (helper 2.1.5 API) + + + + + +

me.lucko.helper.menu

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/package-summary.html b/docs/javadoc/helper/me/lucko/helper/menu/package-summary.html new file mode 100644 index 00000000..0b12650c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/package-summary.html @@ -0,0 +1,164 @@ + + + + + + +me.lucko.helper.menu (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.menu

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/package-tree.html b/docs/javadoc/helper/me/lucko/helper/menu/package-tree.html new file mode 100644 index 00000000..e2e32585 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/package-tree.html @@ -0,0 +1,142 @@ + + + + + + +me.lucko.helper.menu Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.menu

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/package-use.html b/docs/javadoc/helper/me/lucko/helper/menu/package-use.html new file mode 100644 index 00000000..ec58c77d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/package-use.html @@ -0,0 +1,259 @@ + + + + + + +Uses of Package me.lucko.helper.menu (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.menu

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/PageInfo.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PageInfo.html new file mode 100644 index 00000000..7dde9800 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PageInfo.html @@ -0,0 +1,269 @@ + + + + + + +PageInfo (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.paginated
+

Class PageInfo

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGui.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGui.html new file mode 100644 index 00000000..1546a0f9 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGui.html @@ -0,0 +1,332 @@ + + + + + + +PaginatedGui (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.paginated
+

Class PaginatedGui

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGuiBuilder.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGuiBuilder.html new file mode 100644 index 00000000..6a74f24c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/PaginatedGuiBuilder.html @@ -0,0 +1,595 @@ + + + + + + +PaginatedGuiBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.paginated
+

Class PaginatedGuiBuilder

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PageInfo.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PageInfo.html new file mode 100644 index 00000000..3e6d2b35 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PageInfo.html @@ -0,0 +1,218 @@ + + + + + + +Uses of Class me.lucko.helper.menu.paginated.PageInfo (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.paginated.PageInfo

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGui.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGui.html new file mode 100644 index 00000000..04c772ff --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGui.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Class me.lucko.helper.menu.paginated.PaginatedGui (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.paginated.PaginatedGui

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGuiBuilder.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGuiBuilder.html new file mode 100644 index 00000000..67020f23 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/class-use/PaginatedGuiBuilder.html @@ -0,0 +1,215 @@ + + + + + + +Uses of Class me.lucko.helper.menu.paginated.PaginatedGuiBuilder (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.paginated.PaginatedGuiBuilder

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-frame.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-frame.html new file mode 100644 index 00000000..01e8d82b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +me.lucko.helper.menu.paginated (helper 2.1.5 API) + + + + + +

me.lucko.helper.menu.paginated

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-summary.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-summary.html new file mode 100644 index 00000000..5a5dab23 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-summary.html @@ -0,0 +1,158 @@ + + + + + + +me.lucko.helper.menu.paginated (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.menu.paginated

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-tree.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-tree.html new file mode 100644 index 00000000..2b4b697c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-tree.html @@ -0,0 +1,145 @@ + + + + + + +me.lucko.helper.menu.paginated Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.menu.paginated

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-use.html b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-use.html new file mode 100644 index 00000000..03bd6194 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/paginated/package-use.html @@ -0,0 +1,171 @@ + + + + + + +Uses of Package me.lucko.helper.menu.paginated (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.menu.paginated

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/AbstractSchemeMapping.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/AbstractSchemeMapping.html new file mode 100644 index 00000000..fc2e0fe6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/AbstractSchemeMapping.html @@ -0,0 +1,363 @@ + + + + + + +AbstractSchemeMapping (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.scheme
+

Class AbstractSchemeMapping

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuPopulator.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuPopulator.html new file mode 100644 index 00000000..b525050e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuPopulator.html @@ -0,0 +1,454 @@ + + + + + + +MenuPopulator (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.scheme
+

Class MenuPopulator

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuScheme.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuScheme.html new file mode 100644 index 00000000..c35610ae --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/MenuScheme.html @@ -0,0 +1,392 @@ + + + + + + +MenuScheme (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.scheme
+

Class MenuScheme

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/SchemeMapping.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/SchemeMapping.html new file mode 100644 index 00000000..614addd3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/SchemeMapping.html @@ -0,0 +1,304 @@ + + + + + + +SchemeMapping (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.scheme
+

Interface SchemeMapping

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/StandardSchemeMappings.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/StandardSchemeMappings.html new file mode 100644 index 00000000..a7fe2d03 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/StandardSchemeMappings.html @@ -0,0 +1,295 @@ + + + + + + +StandardSchemeMappings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.menu.scheme
+

Class StandardSchemeMappings

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/AbstractSchemeMapping.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/AbstractSchemeMapping.html new file mode 100644 index 00000000..49190277 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/AbstractSchemeMapping.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.menu.scheme.AbstractSchemeMapping (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.scheme.AbstractSchemeMapping

+
+
No usage of me.lucko.helper.menu.scheme.AbstractSchemeMapping
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuPopulator.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuPopulator.html new file mode 100644 index 00000000..2170d2aa --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuPopulator.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Class me.lucko.helper.menu.scheme.MenuPopulator (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.scheme.MenuPopulator

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuScheme.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuScheme.html new file mode 100644 index 00000000..94bf14b7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/MenuScheme.html @@ -0,0 +1,242 @@ + + + + + + +Uses of Class me.lucko.helper.menu.scheme.MenuScheme (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.scheme.MenuScheme

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/SchemeMapping.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/SchemeMapping.html new file mode 100644 index 00000000..adf9157f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/SchemeMapping.html @@ -0,0 +1,231 @@ + + + + + + +Uses of Interface me.lucko.helper.menu.scheme.SchemeMapping (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.menu.scheme.SchemeMapping

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/StandardSchemeMappings.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/StandardSchemeMappings.html new file mode 100644 index 00000000..48e628eb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/class-use/StandardSchemeMappings.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.menu.scheme.StandardSchemeMappings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.menu.scheme.StandardSchemeMappings

+
+
No usage of me.lucko.helper.menu.scheme.StandardSchemeMappings
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-frame.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-frame.html new file mode 100644 index 00000000..9c2f96a5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-frame.html @@ -0,0 +1,28 @@ + + + + + + +me.lucko.helper.menu.scheme (helper 2.1.5 API) + + + + + +

me.lucko.helper.menu.scheme

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-summary.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-summary.html new file mode 100644 index 00000000..a52a0d69 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-summary.html @@ -0,0 +1,181 @@ + + + + + + +me.lucko.helper.menu.scheme (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.menu.scheme

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-tree.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-tree.html new file mode 100644 index 00000000..8fc8740e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-tree.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.menu.scheme Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.menu.scheme

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-use.html b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-use.html new file mode 100644 index 00000000..2c8909fe --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/menu/scheme/package-use.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Package me.lucko.helper.menu.scheme (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.menu.scheme

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/AbstractMessenger.html b/docs/javadoc/helper/me/lucko/helper/messaging/AbstractMessenger.html new file mode 100644 index 00000000..74fa7b0e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/AbstractMessenger.html @@ -0,0 +1,346 @@ + + + + + + +AbstractMessenger (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Class AbstractMessenger

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/Channel.html b/docs/javadoc/helper/me/lucko/helper/messaging/Channel.html new file mode 100644 index 00000000..6774701d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/Channel.html @@ -0,0 +1,318 @@ + + + + + + +Channel (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Interface Channel<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/ChannelAgent.html b/docs/javadoc/helper/me/lucko/helper/messaging/ChannelAgent.html new file mode 100644 index 00000000..4a5a8d23 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/ChannelAgent.html @@ -0,0 +1,350 @@ + + + + + + +ChannelAgent (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Interface ChannelAgent<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/ChannelListener.html b/docs/javadoc/helper/me/lucko/helper/messaging/ChannelListener.html new file mode 100644 index 00000000..90d5c42e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/ChannelListener.html @@ -0,0 +1,249 @@ + + + + + + +ChannelListener (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Interface ChannelListener<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/InstanceData.html b/docs/javadoc/helper/me/lucko/helper/messaging/InstanceData.html new file mode 100644 index 00000000..17267e3e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/InstanceData.html @@ -0,0 +1,253 @@ + + + + + + +InstanceData (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Interface InstanceData

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/Messenger.html b/docs/javadoc/helper/me/lucko/helper/messaging/Messenger.html new file mode 100644 index 00000000..3db13967 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/Messenger.html @@ -0,0 +1,299 @@ + + + + + + +Messenger (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging
+

Interface Messenger

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/BungeeMessaging.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/BungeeMessaging.html new file mode 100644 index 00000000..3ca6e522 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/BungeeMessaging.html @@ -0,0 +1,752 @@ + + + + + + +BungeeMessaging (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.messaging.bungee
+

Class BungeeMessaging

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/class-use/BungeeMessaging.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/class-use/BungeeMessaging.html new file mode 100644 index 00000000..10659b8f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/class-use/BungeeMessaging.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.messaging.bungee.BungeeMessaging (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.messaging.bungee.BungeeMessaging

+
+
No usage of me.lucko.helper.messaging.bungee.BungeeMessaging
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-frame.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-frame.html new file mode 100644 index 00000000..5fe65461 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.messaging.bungee (helper 2.1.5 API) + + + + + +

me.lucko.helper.messaging.bungee

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-summary.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-summary.html new file mode 100644 index 00000000..a46e3919 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.messaging.bungee (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.messaging.bungee

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-tree.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-tree.html new file mode 100644 index 00000000..a2bbd06e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +me.lucko.helper.messaging.bungee Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.messaging.bungee

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-use.html b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-use.html new file mode 100644 index 00000000..9ea0a4ce --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/bungee/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.messaging.bungee (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.messaging.bungee

+
+
No usage of me.lucko.helper.messaging.bungee
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/AbstractMessenger.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/AbstractMessenger.html new file mode 100644 index 00000000..b796981c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/AbstractMessenger.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.messaging.AbstractMessenger (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.messaging.AbstractMessenger

+
+
No usage of me.lucko.helper.messaging.AbstractMessenger
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Channel.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Channel.html new file mode 100644 index 00000000..25f41292 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Channel.html @@ -0,0 +1,193 @@ + + + + + + +Uses of Interface me.lucko.helper.messaging.Channel (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.messaging.Channel

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelAgent.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelAgent.html new file mode 100644 index 00000000..c5edb033 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelAgent.html @@ -0,0 +1,184 @@ + + + + + + +Uses of Interface me.lucko.helper.messaging.ChannelAgent (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.messaging.ChannelAgent

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelListener.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelListener.html new file mode 100644 index 00000000..3bfdf03e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/ChannelListener.html @@ -0,0 +1,189 @@ + + + + + + +Uses of Interface me.lucko.helper.messaging.ChannelListener (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.messaging.ChannelListener

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/InstanceData.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/InstanceData.html new file mode 100644 index 00000000..8ceaf255 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/InstanceData.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface me.lucko.helper.messaging.InstanceData (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.messaging.InstanceData

+
+
No usage of me.lucko.helper.messaging.InstanceData
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Messenger.html b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Messenger.html new file mode 100644 index 00000000..6c618856 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/class-use/Messenger.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface me.lucko.helper.messaging.Messenger (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.messaging.Messenger

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/package-frame.html b/docs/javadoc/helper/me/lucko/helper/messaging/package-frame.html new file mode 100644 index 00000000..85fa78db --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +me.lucko.helper.messaging (helper 2.1.5 API) + + + + + +

me.lucko.helper.messaging

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/package-summary.html b/docs/javadoc/helper/me/lucko/helper/messaging/package-summary.html new file mode 100644 index 00000000..6e299514 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/package-summary.html @@ -0,0 +1,187 @@ + + + + + + +me.lucko.helper.messaging (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.messaging

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/package-tree.html b/docs/javadoc/helper/me/lucko/helper/messaging/package-tree.html new file mode 100644 index 00000000..0b14371a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/package-tree.html @@ -0,0 +1,155 @@ + + + + + + +me.lucko.helper.messaging Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.messaging

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/messaging/package-use.html b/docs/javadoc/helper/me/lucko/helper/messaging/package-use.html new file mode 100644 index 00000000..8bd296a1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/messaging/package-use.html @@ -0,0 +1,176 @@ + + + + + + +Uses of Package me.lucko.helper.messaging (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.messaging

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/Empty.html b/docs/javadoc/helper/me/lucko/helper/metadata/Empty.html new file mode 100644 index 00000000..0e2beae5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/Empty.html @@ -0,0 +1,280 @@ + + + + + + +Empty (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Class Empty

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/ExpiringValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/ExpiringValue.html new file mode 100644 index 00000000..7aaed19b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/ExpiringValue.html @@ -0,0 +1,302 @@ + + + + + + +ExpiringValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Class ExpiringValue<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/Metadata.html b/docs/javadoc/helper/me/lucko/helper/metadata/Metadata.html new file mode 100644 index 00000000..7de6a0e5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/Metadata.html @@ -0,0 +1,483 @@ + + + + + + +Metadata (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Class Metadata

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/MetadataKey.html b/docs/javadoc/helper/me/lucko/helper/metadata/MetadataKey.html new file mode 100644 index 00000000..02c1e438 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/MetadataKey.html @@ -0,0 +1,487 @@ + + + + + + +MetadataKey (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Interface MetadataKey<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/MetadataMap.html b/docs/javadoc/helper/me/lucko/helper/metadata/MetadataMap.html new file mode 100644 index 00000000..217e521e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/MetadataMap.html @@ -0,0 +1,706 @@ + + + + + + +MetadataMap (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Interface MetadataMap

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/SoftValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/SoftValue.html new file mode 100644 index 00000000..7bf16af8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/SoftValue.html @@ -0,0 +1,298 @@ + + + + + + +SoftValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Class SoftValue<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/TransientValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/TransientValue.html new file mode 100644 index 00000000..f9c6ca5f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/TransientValue.html @@ -0,0 +1,260 @@ + + + + + + +TransientValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Interface TransientValue<T>

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/WeakValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/WeakValue.html new file mode 100644 index 00000000..bd2a1b79 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/WeakValue.html @@ -0,0 +1,298 @@ + + + + + + +WeakValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.metadata
+

Class WeakValue<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Empty.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Empty.html new file mode 100644 index 00000000..6f8208c8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Empty.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class me.lucko.helper.metadata.Empty (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.metadata.Empty

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/ExpiringValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/ExpiringValue.html new file mode 100644 index 00000000..5cfc9a68 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/ExpiringValue.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class me.lucko.helper.metadata.ExpiringValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.metadata.ExpiringValue

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Metadata.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Metadata.html new file mode 100644 index 00000000..f912ca82 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/Metadata.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.metadata.Metadata (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.metadata.Metadata

+
+
No usage of me.lucko.helper.metadata.Metadata
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataKey.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataKey.html new file mode 100644 index 00000000..5d2ec163 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataKey.html @@ -0,0 +1,414 @@ + + + + + + +Uses of Interface me.lucko.helper.metadata.MetadataKey (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.metadata.MetadataKey

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataMap.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataMap.html new file mode 100644 index 00000000..46678f84 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/MetadataMap.html @@ -0,0 +1,202 @@ + + + + + + +Uses of Interface me.lucko.helper.metadata.MetadataMap (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.metadata.MetadataMap

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/SoftValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/SoftValue.html new file mode 100644 index 00000000..dfc82d45 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/SoftValue.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class me.lucko.helper.metadata.SoftValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.metadata.SoftValue

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/TransientValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/TransientValue.html new file mode 100644 index 00000000..ff20682e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/TransientValue.html @@ -0,0 +1,226 @@ + + + + + + +Uses of Interface me.lucko.helper.metadata.TransientValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.metadata.TransientValue

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/class-use/WeakValue.html b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/WeakValue.html new file mode 100644 index 00000000..0de8d79e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/class-use/WeakValue.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class me.lucko.helper.metadata.WeakValue (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.metadata.WeakValue

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/package-frame.html b/docs/javadoc/helper/me/lucko/helper/metadata/package-frame.html new file mode 100644 index 00000000..9dfdcde2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/package-frame.html @@ -0,0 +1,31 @@ + + + + + + +me.lucko.helper.metadata (helper 2.1.5 API) + + + + + +

me.lucko.helper.metadata

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/package-summary.html b/docs/javadoc/helper/me/lucko/helper/metadata/package-summary.html new file mode 100644 index 00000000..a1393683 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/package-summary.html @@ -0,0 +1,199 @@ + + + + + + +me.lucko.helper.metadata (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.metadata

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/package-tree.html b/docs/javadoc/helper/me/lucko/helper/metadata/package-tree.html new file mode 100644 index 00000000..ecfaf750 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/package-tree.html @@ -0,0 +1,153 @@ + + + + + + +me.lucko.helper.metadata Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.metadata

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/metadata/package-use.html b/docs/javadoc/helper/me/lucko/helper/metadata/package-use.html new file mode 100644 index 00000000..4d830701 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/metadata/package-use.html @@ -0,0 +1,233 @@ + + + + + + +Uses of Package me.lucko.helper.metadata (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.metadata

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/package-frame.html b/docs/javadoc/helper/me/lucko/helper/package-frame.html new file mode 100644 index 00000000..368e6f7e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/package-frame.html @@ -0,0 +1,37 @@ + + + + + + +me.lucko.helper (helper 2.1.5 API) + + + + + +

me.lucko.helper

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/package-summary.html b/docs/javadoc/helper/me/lucko/helper/package-summary.html new file mode 100644 index 00000000..5e4e0b5f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/package-summary.html @@ -0,0 +1,235 @@ + + + + + + +me.lucko.helper (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/package-tree.html b/docs/javadoc/helper/me/lucko/helper/package-tree.html new file mode 100644 index 00000000..d5b6c324 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/package-tree.html @@ -0,0 +1,159 @@ + + + + + + +me.lucko.helper Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/package-use.html b/docs/javadoc/helper/me/lucko/helper/package-use.html new file mode 100644 index 00000000..9f5beb48 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/package-use.html @@ -0,0 +1,206 @@ + + + + + + +Uses of Package me.lucko.helper (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/DummyHelperPlugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/DummyHelperPlugin.html new file mode 100644 index 00000000..25d05c9c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/DummyHelperPlugin.html @@ -0,0 +1,319 @@ + + + + + + +DummyHelperPlugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.plugin
+

Class DummyHelperPlugin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ExtendedJavaPlugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/ExtendedJavaPlugin.html new file mode 100644 index 00000000..e62ad1b5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ExtendedJavaPlugin.html @@ -0,0 +1,721 @@ + + + + + + +ExtendedJavaPlugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.plugin
+

Class ExtendedJavaPlugin

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/Plugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/Plugin.html new file mode 100644 index 00000000..8dc665de --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/Plugin.html @@ -0,0 +1,493 @@ + + + + + + +Plugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.plugin.ap
+

Annotation Type Plugin

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginDependency.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginDependency.html new file mode 100644 index 00000000..dd01bdff --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginDependency.html @@ -0,0 +1,265 @@ + + + + + + +PluginDependency (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.plugin.ap
+

Annotation Type PluginDependency

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginProcessor.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginProcessor.html new file mode 100644 index 00000000..1554524a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/PluginProcessor.html @@ -0,0 +1,315 @@ + + + + + + +PluginProcessor (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.plugin.ap
+

Class PluginProcessor

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/Plugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/Plugin.html new file mode 100644 index 00000000..d64c1ade --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/Plugin.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.plugin.ap.Plugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.plugin.ap.Plugin

+
+
No usage of me.lucko.helper.plugin.ap.Plugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginDependency.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginDependency.html new file mode 100644 index 00000000..56ac9812 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginDependency.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.plugin.ap.PluginDependency (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.plugin.ap.PluginDependency

+
+
No usage of me.lucko.helper.plugin.ap.PluginDependency
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginProcessor.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginProcessor.html new file mode 100644 index 00000000..5fa6424b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/class-use/PluginProcessor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.plugin.ap.PluginProcessor (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.plugin.ap.PluginProcessor

+
+
No usage of me.lucko.helper.plugin.ap.PluginProcessor
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-frame.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-frame.html new file mode 100644 index 00000000..6b53824b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +me.lucko.helper.plugin.ap (helper 2.1.5 API) + + + + + +

me.lucko.helper.plugin.ap

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-summary.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-summary.html new file mode 100644 index 00000000..7e28a65a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-summary.html @@ -0,0 +1,169 @@ + + + + + + +me.lucko.helper.plugin.ap (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.plugin.ap

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-tree.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-tree.html new file mode 100644 index 00000000..6dc7bf6c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-tree.html @@ -0,0 +1,148 @@ + + + + + + +me.lucko.helper.plugin.ap Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.plugin.ap

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-use.html b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-use.html new file mode 100644 index 00000000..321723ed --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/ap/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.plugin.ap (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.plugin.ap

+
+
No usage of me.lucko.helper.plugin.ap
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/class-use/DummyHelperPlugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/class-use/DummyHelperPlugin.html new file mode 100644 index 00000000..cfe49f3f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/class-use/DummyHelperPlugin.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.plugin.DummyHelperPlugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.plugin.DummyHelperPlugin

+
+
No usage of me.lucko.helper.plugin.DummyHelperPlugin
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/class-use/ExtendedJavaPlugin.html b/docs/javadoc/helper/me/lucko/helper/plugin/class-use/ExtendedJavaPlugin.html new file mode 100644 index 00000000..5cdd9129 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/class-use/ExtendedJavaPlugin.html @@ -0,0 +1,213 @@ + + + + + + +Uses of Class me.lucko.helper.plugin.ExtendedJavaPlugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.plugin.ExtendedJavaPlugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/package-frame.html b/docs/javadoc/helper/me/lucko/helper/plugin/package-frame.html new file mode 100644 index 00000000..23aa597b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.plugin (helper 2.1.5 API) + + + + + +

me.lucko.helper.plugin

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/package-summary.html b/docs/javadoc/helper/me/lucko/helper/plugin/package-summary.html new file mode 100644 index 00000000..5c0a3985 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +me.lucko.helper.plugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.plugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/package-tree.html b/docs/javadoc/helper/me/lucko/helper/plugin/package-tree.html new file mode 100644 index 00000000..da694f6d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +me.lucko.helper.plugin Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.plugin

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/plugin/package-use.html b/docs/javadoc/helper/me/lucko/helper/plugin/package-use.html new file mode 100644 index 00000000..4c13973f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/plugin/package-use.html @@ -0,0 +1,203 @@ + + + + + + +Uses of Package me.lucko.helper.plugin (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.plugin

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/GlobalScoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/GlobalScoreboard.html new file mode 100644 index 00000000..dbcd2fe9 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/GlobalScoreboard.html @@ -0,0 +1,249 @@ + + + + + + +GlobalScoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Class GlobalScoreboard

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboard.html new file mode 100644 index 00000000..9dc63685 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboard.html @@ -0,0 +1,726 @@ + + + + + + +PacketScoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Class PacketScoreboard

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardObjective.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardObjective.html new file mode 100644 index 00000000..712c3748 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardObjective.html @@ -0,0 +1,710 @@ + + + + + + +PacketScoreboardObjective (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Class PacketScoreboardObjective

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardTeam.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardTeam.html new file mode 100644 index 00000000..7cfcda06 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/PacketScoreboardTeam.html @@ -0,0 +1,833 @@ + + + + + + +PacketScoreboardTeam (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Class PacketScoreboardTeam

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/Scoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/Scoreboard.html new file mode 100644 index 00000000..e4bb22c9 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/Scoreboard.html @@ -0,0 +1,645 @@ + + + + + + +Scoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Interface Scoreboard

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardObjective.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardObjective.html new file mode 100644 index 00000000..ee264c33 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardObjective.html @@ -0,0 +1,581 @@ + + + + + + +ScoreboardObjective (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Interface ScoreboardObjective

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.CollisionRule.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.CollisionRule.html new file mode 100644 index 00000000..5697f08b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.CollisionRule.html @@ -0,0 +1,384 @@ + + + + + + +ScoreboardTeam.CollisionRule (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Enum ScoreboardTeam.CollisionRule

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.NameTagVisibility.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.NameTagVisibility.html new file mode 100644 index 00000000..559a7774 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.NameTagVisibility.html @@ -0,0 +1,384 @@ + + + + + + +ScoreboardTeam.NameTagVisibility (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Enum ScoreboardTeam.NameTagVisibility

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.html new file mode 100644 index 00000000..9782efe8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/ScoreboardTeam.html @@ -0,0 +1,704 @@ + + + + + + +ScoreboardTeam (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.scoreboard
+

Interface ScoreboardTeam

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/GlobalScoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/GlobalScoreboard.html new file mode 100644 index 00000000..03c4c49b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/GlobalScoreboard.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.GlobalScoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.GlobalScoreboard

+
+
No usage of me.lucko.helper.scoreboard.GlobalScoreboard
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboard.html new file mode 100644 index 00000000..87ca77ba --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboard.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.PacketScoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.PacketScoreboard

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardObjective.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardObjective.html new file mode 100644 index 00000000..2620253b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardObjective.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.PacketScoreboardObjective (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.PacketScoreboardObjective

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardTeam.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardTeam.html new file mode 100644 index 00000000..e74018fb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/PacketScoreboardTeam.html @@ -0,0 +1,203 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.PacketScoreboardTeam (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.PacketScoreboardTeam

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/Scoreboard.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/Scoreboard.html new file mode 100644 index 00000000..b603ade8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/Scoreboard.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface me.lucko.helper.scoreboard.Scoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.scoreboard.Scoreboard

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardObjective.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardObjective.html new file mode 100644 index 00000000..7eb6977a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardObjective.html @@ -0,0 +1,222 @@ + + + + + + +Uses of Interface me.lucko.helper.scoreboard.ScoreboardObjective (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.scoreboard.ScoreboardObjective

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.CollisionRule.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.CollisionRule.html new file mode 100644 index 00000000..23f9450c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.CollisionRule.html @@ -0,0 +1,204 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.ScoreboardTeam.CollisionRule (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.ScoreboardTeam.CollisionRule

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.NameTagVisibility.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.NameTagVisibility.html new file mode 100644 index 00000000..b9cf5c0f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.NameTagVisibility.html @@ -0,0 +1,204 @@ + + + + + + +Uses of Class me.lucko.helper.scoreboard.ScoreboardTeam.NameTagVisibility (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.scoreboard.ScoreboardTeam.NameTagVisibility

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.html new file mode 100644 index 00000000..501b24dc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/class-use/ScoreboardTeam.html @@ -0,0 +1,220 @@ + + + + + + +Uses of Interface me.lucko.helper.scoreboard.ScoreboardTeam (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.scoreboard.ScoreboardTeam

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/package-frame.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-frame.html new file mode 100644 index 00000000..f94b2072 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-frame.html @@ -0,0 +1,35 @@ + + + + + + +me.lucko.helper.scoreboard (helper 2.1.5 API) + + + + + +

me.lucko.helper.scoreboard

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/package-summary.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-summary.html new file mode 100644 index 00000000..36d48a19 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-summary.html @@ -0,0 +1,214 @@ + + + + + + +me.lucko.helper.scoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.scoreboard

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/package-tree.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-tree.html new file mode 100644 index 00000000..31296baa --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-tree.html @@ -0,0 +1,161 @@ + + + + + + +me.lucko.helper.scoreboard Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.scoreboard

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/scoreboard/package-use.html b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-use.html new file mode 100644 index 00000000..f2284d5f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/scoreboard/package-use.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Package me.lucko.helper.scoreboard (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.scoreboard

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/BlockPosition.html b/docs/javadoc/helper/me/lucko/helper/serialize/BlockPosition.html new file mode 100644 index 00000000..41902d57 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/BlockPosition.html @@ -0,0 +1,652 @@ + + + + + + +BlockPosition (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class BlockPosition

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/BlockRegion.html b/docs/javadoc/helper/me/lucko/helper/serialize/BlockRegion.html new file mode 100644 index 00000000..a12e12c9 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/BlockRegion.html @@ -0,0 +1,450 @@ + + + + + + +BlockRegion (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class BlockRegion

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/ChunkPosition.html b/docs/javadoc/helper/me/lucko/helper/serialize/ChunkPosition.html new file mode 100644 index 00000000..8bf577ca --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/ChunkPosition.html @@ -0,0 +1,570 @@ + + + + + + +ChunkPosition (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class ChunkPosition

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/ChunkRegion.html b/docs/javadoc/helper/me/lucko/helper/serialize/ChunkRegion.html new file mode 100644 index 00000000..d545783b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/ChunkRegion.html @@ -0,0 +1,422 @@ + + + + + + +ChunkRegion (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class ChunkRegion

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/Direction.html b/docs/javadoc/helper/me/lucko/helper/serialize/Direction.html new file mode 100644 index 00000000..ed3433a6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/Direction.html @@ -0,0 +1,417 @@ + + + + + + +Direction (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class Direction

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/FileStorageHandler.html b/docs/javadoc/helper/me/lucko/helper/serialize/FileStorageHandler.html new file mode 100644 index 00000000..fa45e32c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/FileStorageHandler.html @@ -0,0 +1,368 @@ + + + + + + +FileStorageHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class FileStorageHandler<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/GsonStorageHandler.html b/docs/javadoc/helper/me/lucko/helper/serialize/GsonStorageHandler.html new file mode 100644 index 00000000..0c8f7912 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/GsonStorageHandler.html @@ -0,0 +1,466 @@ + + + + + + +GsonStorageHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class GsonStorageHandler<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/Point.html b/docs/javadoc/helper/me/lucko/helper/serialize/Point.html new file mode 100644 index 00000000..0876d15f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/Point.html @@ -0,0 +1,428 @@ + + + + + + +Point (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class Point

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/Position.html b/docs/javadoc/helper/me/lucko/helper/serialize/Position.html new file mode 100644 index 00000000..ac7c9183 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/Position.html @@ -0,0 +1,652 @@ + + + + + + +Position (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class Position

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/Region.html b/docs/javadoc/helper/me/lucko/helper/serialize/Region.html new file mode 100644 index 00000000..c55ac247 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/Region.html @@ -0,0 +1,450 @@ + + + + + + +Region (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class Region

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/Serializers.html b/docs/javadoc/helper/me/lucko/helper/serialize/Serializers.html new file mode 100644 index 00000000..3305876f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/Serializers.html @@ -0,0 +1,307 @@ + + + + + + +Serializers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class Serializers

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/VectorSerializers.html b/docs/javadoc/helper/me/lucko/helper/serialize/VectorSerializers.html new file mode 100644 index 00000000..46e15a1d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/VectorSerializers.html @@ -0,0 +1,539 @@ + + + + + + +VectorSerializers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.serialize
+

Class VectorSerializers

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockPosition.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockPosition.html new file mode 100644 index 00000000..a14fa498 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockPosition.html @@ -0,0 +1,291 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.BlockPosition (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.BlockPosition

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockRegion.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockRegion.html new file mode 100644 index 00000000..55675009 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/BlockRegion.html @@ -0,0 +1,175 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.BlockRegion (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.BlockRegion

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkPosition.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkPosition.html new file mode 100644 index 00000000..af741cc0 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkPosition.html @@ -0,0 +1,249 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.ChunkPosition (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.ChunkPosition

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkRegion.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkRegion.html new file mode 100644 index 00000000..1f0be2f1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/ChunkRegion.html @@ -0,0 +1,171 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.ChunkRegion (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.ChunkRegion

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Direction.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Direction.html new file mode 100644 index 00000000..cd40a912 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Direction.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.Direction (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.Direction

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/FileStorageHandler.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/FileStorageHandler.html new file mode 100644 index 00000000..6f80e8bc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/FileStorageHandler.html @@ -0,0 +1,185 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.FileStorageHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.FileStorageHandler

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/GsonStorageHandler.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/GsonStorageHandler.html new file mode 100644 index 00000000..c1bbbcee --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/GsonStorageHandler.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.GsonStorageHandler (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.GsonStorageHandler

+
+
No usage of me.lucko.helper.serialize.GsonStorageHandler
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Point.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Point.html new file mode 100644 index 00000000..8415bbb1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Point.html @@ -0,0 +1,191 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.Point (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.Point

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Position.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Position.html new file mode 100644 index 00000000..0aa37d2d --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Position.html @@ -0,0 +1,313 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.Position (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.Position

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Region.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Region.html new file mode 100644 index 00000000..4fe70185 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Region.html @@ -0,0 +1,175 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.Region (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.Region

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Serializers.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Serializers.html new file mode 100644 index 00000000..4f03d352 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/Serializers.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.Serializers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.Serializers

+
+
No usage of me.lucko.helper.serialize.Serializers
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/class-use/VectorSerializers.html b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/VectorSerializers.html new file mode 100644 index 00000000..a369eebb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/class-use/VectorSerializers.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.serialize.VectorSerializers (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.serialize.VectorSerializers

+
+
No usage of me.lucko.helper.serialize.VectorSerializers
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/package-frame.html b/docs/javadoc/helper/me/lucko/helper/serialize/package-frame.html new file mode 100644 index 00000000..9b95e7d5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/package-frame.html @@ -0,0 +1,32 @@ + + + + + + +me.lucko.helper.serialize (helper 2.1.5 API) + + + + + +

me.lucko.helper.serialize

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/package-summary.html b/docs/javadoc/helper/me/lucko/helper/serialize/package-summary.html new file mode 100644 index 00000000..a4e8e8c3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/package-summary.html @@ -0,0 +1,214 @@ + + + + + + +me.lucko.helper.serialize (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

@NonnullByDefault +

+

Package me.lucko.helper.serialize

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/package-tree.html b/docs/javadoc/helper/me/lucko/helper/serialize/package-tree.html new file mode 100644 index 00000000..7667e3a8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/package-tree.html @@ -0,0 +1,153 @@ + + + + + + +me.lucko.helper.serialize Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.serialize

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/serialize/package-use.html b/docs/javadoc/helper/me/lucko/helper/serialize/package-use.html new file mode 100644 index 00000000..65e66660 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/serialize/package-use.html @@ -0,0 +1,243 @@ + + + + + + +Uses of Package me.lucko.helper.serialize (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.serialize

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/Terminable.html b/docs/javadoc/helper/me/lucko/helper/terminable/Terminable.html new file mode 100644 index 00000000..d349d27c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/Terminable.html @@ -0,0 +1,336 @@ + + + + + + +Terminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable
+

Interface Terminable

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/TerminableConsumer.html b/docs/javadoc/helper/me/lucko/helper/terminable/TerminableConsumer.html new file mode 100644 index 00000000..2495c79e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/TerminableConsumer.html @@ -0,0 +1,280 @@ + + + + + + +TerminableConsumer (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable
+

Interface TerminableConsumer

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/Terminables.html b/docs/javadoc/helper/me/lucko/helper/terminable/Terminables.html new file mode 100644 index 00000000..c8323467 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/Terminables.html @@ -0,0 +1,241 @@ + + + + + + +Terminables (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable
+

Class Terminables

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminable.html b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminable.html new file mode 100644 index 00000000..fa8314b1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminable.html @@ -0,0 +1,413 @@ + + + + + + +Uses of Interface me.lucko.helper.terminable.Terminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.terminable.Terminable

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/class-use/TerminableConsumer.html b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/TerminableConsumer.html new file mode 100644 index 00000000..5e978bc8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/TerminableConsumer.html @@ -0,0 +1,307 @@ + + + + + + +Uses of Interface me.lucko.helper.terminable.TerminableConsumer (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.terminable.TerminableConsumer

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminables.html b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminables.html new file mode 100644 index 00000000..3c4a2979 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/class-use/Terminables.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.terminable.Terminables (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.terminable.Terminables

+
+
No usage of me.lucko.helper.terminable.Terminables
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminable.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminable.html new file mode 100644 index 00000000..d2174b0c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminable.html @@ -0,0 +1,256 @@ + + + + + + +CompositeTerminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable.composite
+

Interface CompositeTerminable

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminableConsumer.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminableConsumer.html new file mode 100644 index 00000000..675260ad --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/CompositeTerminableConsumer.html @@ -0,0 +1,252 @@ + + + + + + +CompositeTerminableConsumer (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable.composite
+

Interface CompositeTerminableConsumer

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminable.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminable.html new file mode 100644 index 00000000..661adbb2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminable.html @@ -0,0 +1,212 @@ + + + + + + +Uses of Interface me.lucko.helper.terminable.composite.CompositeTerminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.terminable.composite.CompositeTerminable

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminableConsumer.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminableConsumer.html new file mode 100644 index 00000000..e4f179bb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/class-use/CompositeTerminableConsumer.html @@ -0,0 +1,235 @@ + + + + + + +Uses of Interface me.lucko.helper.terminable.composite.CompositeTerminableConsumer (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.terminable.composite.CompositeTerminableConsumer

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-frame.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-frame.html new file mode 100644 index 00000000..ffcbdd19 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +me.lucko.helper.terminable.composite (helper 2.1.5 API) + + + + + +

me.lucko.helper.terminable.composite

+
+

Interfaces

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-summary.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-summary.html new file mode 100644 index 00000000..fee27fc0 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-summary.html @@ -0,0 +1,153 @@ + + + + + + +me.lucko.helper.terminable.composite (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.terminable.composite

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-tree.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-tree.html new file mode 100644 index 00000000..b78f8def --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-tree.html @@ -0,0 +1,136 @@ + + + + + + +me.lucko.helper.terminable.composite Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.terminable.composite

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-use.html b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-use.html new file mode 100644 index 00000000..d6f9d598 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/composite/package-use.html @@ -0,0 +1,221 @@ + + + + + + +Uses of Package me.lucko.helper.terminable.composite (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.terminable.composite

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/package-frame.html b/docs/javadoc/helper/me/lucko/helper/terminable/package-frame.html new file mode 100644 index 00000000..317ed5fd --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +me.lucko.helper.terminable (helper 2.1.5 API) + + + + + +

me.lucko.helper.terminable

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/package-summary.html b/docs/javadoc/helper/me/lucko/helper/terminable/package-summary.html new file mode 100644 index 00000000..e0d0735a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/package-summary.html @@ -0,0 +1,167 @@ + + + + + + +me.lucko.helper.terminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.terminable

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/package-tree.html b/docs/javadoc/helper/me/lucko/helper/terminable/package-tree.html new file mode 100644 index 00000000..d23eafe8 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +me.lucko.helper.terminable Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.terminable

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/package-use.html b/docs/javadoc/helper/me/lucko/helper/terminable/package-use.html new file mode 100644 index 00000000..1feaacef --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/package-use.html @@ -0,0 +1,370 @@ + + + + + + +Uses of Package me.lucko.helper.terminable (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.terminable

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/SimpleTerminableRegistry.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/SimpleTerminableRegistry.html new file mode 100644 index 00000000..0bd44fec --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/SimpleTerminableRegistry.html @@ -0,0 +1,430 @@ + + + + + + +SimpleTerminableRegistry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable.registry
+

Class SimpleTerminableRegistry

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/TerminableRegistry.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/TerminableRegistry.html new file mode 100644 index 00000000..eccf144b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/TerminableRegistry.html @@ -0,0 +1,286 @@ + + + + + + +TerminableRegistry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.terminable.registry
+

Interface TerminableRegistry

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/SimpleTerminableRegistry.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/SimpleTerminableRegistry.html new file mode 100644 index 00000000..c59e87ed --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/SimpleTerminableRegistry.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.terminable.registry.SimpleTerminableRegistry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.terminable.registry.SimpleTerminableRegistry

+
+
No usage of me.lucko.helper.terminable.registry.SimpleTerminableRegistry
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/TerminableRegistry.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/TerminableRegistry.html new file mode 100644 index 00000000..1fcb10d3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/class-use/TerminableRegistry.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Interface me.lucko.helper.terminable.registry.TerminableRegistry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
me.lucko.helper.terminable.registry.TerminableRegistry

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-frame.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-frame.html new file mode 100644 index 00000000..02d9aa5b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +me.lucko.helper.terminable.registry (helper 2.1.5 API) + + + + + +

me.lucko.helper.terminable.registry

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-summary.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-summary.html new file mode 100644 index 00000000..90962a88 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-summary.html @@ -0,0 +1,161 @@ + + + + + + +me.lucko.helper.terminable.registry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.terminable.registry

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-tree.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-tree.html new file mode 100644 index 00000000..cd2b047c --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-tree.html @@ -0,0 +1,157 @@ + + + + + + +me.lucko.helper.terminable.registry Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.terminable.registry

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-use.html b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-use.html new file mode 100644 index 00000000..17015a75 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/terminable/registry/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package me.lucko.helper.terminable.registry (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.terminable.registry

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/Timings.html b/docs/javadoc/helper/me/lucko/helper/timings/Timings.html new file mode 100644 index 00000000..8999f987 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/Timings.html @@ -0,0 +1,304 @@ + + + + + + +Timings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.timings
+

Class Timings

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/class-use/Timings.html b/docs/javadoc/helper/me/lucko/helper/timings/class-use/Timings.html new file mode 100644 index 00000000..788634db --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/class-use/Timings.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.timings.Timings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.timings.Timings

+
+
No usage of me.lucko.helper.timings.Timings
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/package-frame.html b/docs/javadoc/helper/me/lucko/helper/timings/package-frame.html new file mode 100644 index 00000000..eddb38c1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.timings (helper 2.1.5 API) + + + + + +

me.lucko.helper.timings

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/package-summary.html b/docs/javadoc/helper/me/lucko/helper/timings/package-summary.html new file mode 100644 index 00000000..f000ea90 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +me.lucko.helper.timings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.timings

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/package-tree.html b/docs/javadoc/helper/me/lucko/helper/timings/package-tree.html new file mode 100644 index 00000000..32b370b4 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +me.lucko.helper.timings Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.timings

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/timings/package-use.html b/docs/javadoc/helper/me/lucko/helper/timings/package-use.html new file mode 100644 index 00000000..505e973b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/timings/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package me.lucko.helper.timings (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.timings

+
+
No usage of me.lucko.helper.timings
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/CollectionUtils.html b/docs/javadoc/helper/me/lucko/helper/utils/CollectionUtils.html new file mode 100644 index 00000000..0fbb930b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/CollectionUtils.html @@ -0,0 +1,241 @@ + + + + + + +CollectionUtils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class CollectionUtils

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/Color.html b/docs/javadoc/helper/me/lucko/helper/utils/Color.html new file mode 100644 index 00000000..f1ae37e0 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/Color.html @@ -0,0 +1,239 @@ + + + + + + +Color (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class Color

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/CommandMapUtil.html b/docs/javadoc/helper/me/lucko/helper/utils/CommandMapUtil.html new file mode 100644 index 00000000..7fb574fc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/CommandMapUtil.html @@ -0,0 +1,261 @@ + + + + + + +CommandMapUtil (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class CommandMapUtil

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/Cooldown.html b/docs/javadoc/helper/me/lucko/helper/utils/Cooldown.html new file mode 100644 index 00000000..cf24aed5 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/Cooldown.html @@ -0,0 +1,510 @@ + + + + + + +Cooldown (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class Cooldown

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/CooldownCollection.html b/docs/javadoc/helper/me/lucko/helper/utils/CooldownCollection.html new file mode 100644 index 00000000..8b6e7625 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/CooldownCollection.html @@ -0,0 +1,475 @@ + + + + + + +CooldownCollection (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class CooldownCollection<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/Cycle.html b/docs/javadoc/helper/me/lucko/helper/utils/Cycle.html new file mode 100644 index 00000000..c2bc40bd --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/Cycle.html @@ -0,0 +1,384 @@ + + + + + + +Cycle (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class Cycle<E>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/ImmutableCollectors.html b/docs/javadoc/helper/me/lucko/helper/utils/ImmutableCollectors.html new file mode 100644 index 00000000..1d1e78e6 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/ImmutableCollectors.html @@ -0,0 +1,314 @@ + + + + + + +ImmutableCollectors (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class ImmutableCollectors

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/LoaderUtils.html b/docs/javadoc/helper/me/lucko/helper/utils/LoaderUtils.html new file mode 100644 index 00000000..63ed30b3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/LoaderUtils.html @@ -0,0 +1,241 @@ + + + + + + +LoaderUtils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class LoaderUtils

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/Log.html b/docs/javadoc/helper/me/lucko/helper/utils/Log.html new file mode 100644 index 00000000..4da6d34a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/Log.html @@ -0,0 +1,269 @@ + + + + + + +Log (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class Log

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/Players.html b/docs/javadoc/helper/me/lucko/helper/utils/Players.html new file mode 100644 index 00000000..829ddf21 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/Players.html @@ -0,0 +1,925 @@ + + + + + + +Players (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class Players

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/ServiceCallback.html b/docs/javadoc/helper/me/lucko/helper/utils/ServiceCallback.html new file mode 100644 index 00000000..daf49ed3 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/ServiceCallback.html @@ -0,0 +1,437 @@ + + + + + + +ServiceCallback (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class ServiceCallback<T>

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/TimeUtil.html b/docs/javadoc/helper/me/lucko/helper/utils/TimeUtil.html new file mode 100644 index 00000000..eefa6e20 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/TimeUtil.html @@ -0,0 +1,280 @@ + + + + + + +TimeUtil (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils
+

Class TimeUtil

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/NonnullByDefault.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/NonnullByDefault.html new file mode 100644 index 00000000..0a7ea8cc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/NonnullByDefault.html @@ -0,0 +1,169 @@ + + + + + + +NonnullByDefault (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
me.lucko.helper.utils.annotation
+

Annotation Type NonnullByDefault

+
+
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/class-use/NonnullByDefault.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/class-use/NonnullByDefault.html new file mode 100644 index 00000000..87219faa --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/class-use/NonnullByDefault.html @@ -0,0 +1,652 @@ + + + + + + +Uses of Class me.lucko.helper.utils.annotation.NonnullByDefault (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.annotation.NonnullByDefault

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-frame.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-frame.html new file mode 100644 index 00000000..a57371c2 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +me.lucko.helper.utils.annotation (helper 2.1.5 API) + + + + + +

me.lucko.helper.utils.annotation

+
+

Annotation Types

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-summary.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-summary.html new file mode 100644 index 00000000..cd596efe --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-summary.html @@ -0,0 +1,144 @@ + + + + + + +me.lucko.helper.utils.annotation (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.utils.annotation

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-tree.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-tree.html new file mode 100644 index 00000000..6031529f --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-tree.html @@ -0,0 +1,135 @@ + + + + + + +me.lucko.helper.utils.annotation Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.utils.annotation

+Package Hierarchies: + +
+
+

Annotation Type Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-use.html b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-use.html new file mode 100644 index 00000000..43f518c9 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/annotation/package-use.html @@ -0,0 +1,406 @@ + + + + + + +Uses of Package me.lucko.helper.utils.annotation (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.utils.annotation

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/CollectionUtils.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CollectionUtils.html new file mode 100644 index 00000000..9da7124a --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CollectionUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.CollectionUtils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.CollectionUtils

+
+
No usage of me.lucko.helper.utils.CollectionUtils
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/Color.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Color.html new file mode 100644 index 00000000..d768291b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Color.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.Color (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.Color

+
+
No usage of me.lucko.helper.utils.Color
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/CommandMapUtil.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CommandMapUtil.html new file mode 100644 index 00000000..95316750 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CommandMapUtil.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.CommandMapUtil (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.CommandMapUtil

+
+
No usage of me.lucko.helper.utils.CommandMapUtil
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cooldown.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cooldown.html new file mode 100644 index 00000000..288f4456 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cooldown.html @@ -0,0 +1,344 @@ + + + + + + +Uses of Class me.lucko.helper.utils.Cooldown (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.Cooldown

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/CooldownCollection.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CooldownCollection.html new file mode 100644 index 00000000..664f579b --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/CooldownCollection.html @@ -0,0 +1,238 @@ + + + + + + +Uses of Class me.lucko.helper.utils.CooldownCollection (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.CooldownCollection

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cycle.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cycle.html new file mode 100644 index 00000000..ce9f41fc --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Cycle.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.Cycle (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.Cycle

+
+
No usage of me.lucko.helper.utils.Cycle
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/ImmutableCollectors.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/ImmutableCollectors.html new file mode 100644 index 00000000..eb84bcc7 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/ImmutableCollectors.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.ImmutableCollectors (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.ImmutableCollectors

+
+
No usage of me.lucko.helper.utils.ImmutableCollectors
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/LoaderUtils.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/LoaderUtils.html new file mode 100644 index 00000000..dfb015ad --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/LoaderUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.LoaderUtils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.LoaderUtils

+
+
No usage of me.lucko.helper.utils.LoaderUtils
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/Log.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Log.html new file mode 100644 index 00000000..3494ebbf --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Log.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.Log (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.Log

+
+
No usage of me.lucko.helper.utils.Log
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/Players.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Players.html new file mode 100644 index 00000000..b6d72f30 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/Players.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.Players (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.Players

+
+
No usage of me.lucko.helper.utils.Players
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/ServiceCallback.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/ServiceCallback.html new file mode 100644 index 00000000..fe14059e --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/ServiceCallback.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class me.lucko.helper.utils.ServiceCallback (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.ServiceCallback

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/class-use/TimeUtil.html b/docs/javadoc/helper/me/lucko/helper/utils/class-use/TimeUtil.html new file mode 100644 index 00000000..03f97605 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/class-use/TimeUtil.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class me.lucko.helper.utils.TimeUtil (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
me.lucko.helper.utils.TimeUtil

+
+
No usage of me.lucko.helper.utils.TimeUtil
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/package-frame.html b/docs/javadoc/helper/me/lucko/helper/utils/package-frame.html new file mode 100644 index 00000000..f6eb11e1 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/package-frame.html @@ -0,0 +1,32 @@ + + + + + + +me.lucko.helper.utils (helper 2.1.5 API) + + + + + +

me.lucko.helper.utils

+
+

Classes

+ +
+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/package-summary.html b/docs/javadoc/helper/me/lucko/helper/utils/package-summary.html new file mode 100644 index 00000000..ec101e77 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/package-summary.html @@ -0,0 +1,204 @@ + + + + + + +me.lucko.helper.utils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package me.lucko.helper.utils

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/package-tree.html b/docs/javadoc/helper/me/lucko/helper/utils/package-tree.html new file mode 100644 index 00000000..5f120c96 --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/package-tree.html @@ -0,0 +1,150 @@ + + + + + + +me.lucko.helper.utils Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package me.lucko.helper.utils

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/me/lucko/helper/utils/package-use.html b/docs/javadoc/helper/me/lucko/helper/utils/package-use.html new file mode 100644 index 00000000..54221eeb --- /dev/null +++ b/docs/javadoc/helper/me/lucko/helper/utils/package-use.html @@ -0,0 +1,218 @@ + + + + + + +Uses of Package me.lucko.helper.utils (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
me.lucko.helper.utils

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/overview-frame.html b/docs/javadoc/helper/overview-frame.html new file mode 100644 index 00000000..6372d477 --- /dev/null +++ b/docs/javadoc/helper/overview-frame.html @@ -0,0 +1,45 @@ + + + + + + +Overview List (helper 2.1.5 API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/docs/javadoc/helper/overview-summary.html b/docs/javadoc/helper/overview-summary.html new file mode 100644 index 00000000..39b1232e --- /dev/null +++ b/docs/javadoc/helper/overview-summary.html @@ -0,0 +1,232 @@ + + + + + + +Overview (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

helper 2.1.5 API

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Packages 
PackageDescription
me.lucko.helper 
me.lucko.helper.function 
me.lucko.helper.function.chain 
me.lucko.helper.gson 
me.lucko.helper.hologram 
me.lucko.helper.interfaces 
me.lucko.helper.item 
me.lucko.helper.maven 
me.lucko.helper.menu 
me.lucko.helper.menu.paginated 
me.lucko.helper.menu.scheme 
me.lucko.helper.messaging 
me.lucko.helper.messaging.bungee 
me.lucko.helper.metadata 
me.lucko.helper.plugin 
me.lucko.helper.plugin.ap 
me.lucko.helper.scoreboard 
me.lucko.helper.serialize 
me.lucko.helper.terminable 
me.lucko.helper.terminable.composite 
me.lucko.helper.terminable.registry 
me.lucko.helper.timings 
me.lucko.helper.utils 
me.lucko.helper.utils.annotation 
+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/overview-tree.html b/docs/javadoc/helper/overview-tree.html new file mode 100644 index 00000000..58b81a9d --- /dev/null +++ b/docs/javadoc/helper/overview-tree.html @@ -0,0 +1,331 @@ + + + + + + +Class Hierarchy (helper 2.1.5 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2017. All rights reserved.

+ + diff --git a/docs/javadoc/helper/package-list b/docs/javadoc/helper/package-list new file mode 100644 index 00000000..d87894fd --- /dev/null +++ b/docs/javadoc/helper/package-list @@ -0,0 +1,24 @@ +me.lucko.helper +me.lucko.helper.function +me.lucko.helper.function.chain +me.lucko.helper.gson +me.lucko.helper.hologram +me.lucko.helper.interfaces +me.lucko.helper.item +me.lucko.helper.maven +me.lucko.helper.menu +me.lucko.helper.menu.paginated +me.lucko.helper.menu.scheme +me.lucko.helper.messaging +me.lucko.helper.messaging.bungee +me.lucko.helper.metadata +me.lucko.helper.plugin +me.lucko.helper.plugin.ap +me.lucko.helper.scoreboard +me.lucko.helper.serialize +me.lucko.helper.terminable +me.lucko.helper.terminable.composite +me.lucko.helper.terminable.registry +me.lucko.helper.timings +me.lucko.helper.utils +me.lucko.helper.utils.annotation diff --git a/docs/javadoc/helper/resources/fonts/dejavu.css b/docs/javadoc/helper/resources/fonts/dejavu.css new file mode 100644 index 00000000..82b867f5 --- /dev/null +++ b/docs/javadoc/helper/resources/fonts/dejavu.css @@ -0,0 +1 @@ +h1{font-family:"Dejavu Sans";font-size:24px;font-style:normal;font-variant:normal;font-weight:500;line-height:26.4px;}h3{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:500;line-height:15.4px;}p{font-family:"Dejavu Sans";font-size:14px;font-style:normal;font-variant:normal;font-weight:400;line-height:20px;}blockquote{font-family:"Dejavu Sans";font-size:21px;font-style:normal;font-variant:normal;font-weight:400;line-height:30px;}pre{font-family:"Dejavu Sans";font-size:13px;font-style:normal;font-variant:normal;font-weight:400;line-height:18.5714px;} diff --git a/docs/javadoc/helper/script.js b/docs/javadoc/helper/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/docs/javadoc/helper/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/javadoc/helper/stylesheet.css b/docs/javadoc/helper/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/docs/javadoc/helper/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +}