Index
All Classes and Interfaces|All Packages
B
- BungeeCord - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the BungeeCord platform.
C
- Collections - Class in one.tranic.t.utils
-
The Collections class provides utility methods for creating optimized data structures such as maps, sets, and lists.
- Collections() - Constructor for class one.tranic.t.utils.Collections
- Command - Class in one.tranic.t.utils
- Command() - Constructor for class one.tranic.t.utils.Command
E
- entryForEach(Map<K, V>, Consumer<? super Map.Entry<K, V>>) - Static method in class one.tranic.t.utils.Collections
-
Iterates over each entry in the provided map and applies the given consumer action to each entry.
F
- Folia - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the Folia platform.
- fromProtocolVersion(int) - Static method in enum class one.tranic.t.utils.ProtocolVersion
-
Returns the corresponding ProtocolVersion for the given protocol number.
G
- generateRandomId(int) - Static method in class one.tranic.t.utils.Rand
-
Generates a random alphanumeric string of the specified length.
- get() - Static method in enum class one.tranic.t.utils.Platform
-
Detects and returns the current platform.
- getClassPath() - Method in enum class one.tranic.t.utils.Platform
-
Retrieves the class path as a string.
- getName(String) - Static method in class one.tranic.t.utils.Command
- getPermission(String) - Static method in class one.tranic.t.utils.Command
- getProtocolVersion() - Method in enum class one.tranic.t.utils.ProtocolVersion
-
Returns the protocol number for this ProtocolVersion.
I
- is() - Method in enum class one.tranic.t.utils.Platform
-
Determines whether the specified class exists in the classpath.
- isBukkit() - Static method in enum class one.tranic.t.utils.Platform
-
Determines whether the current platform is a Bukkit-based platform.
- isMultithreading() - Static method in enum class one.tranic.t.utils.Platform
-
Determines whether the current environment supports multithreading features.
N
- newArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates a new empty list instance.
- newArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new
Listinstance with the specified initial size. - newArrayList(Iterable<? extends T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new
ArrayListcontaining the elements from the providedIterable. - newArrayList(Collection<? extends T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list containing the elements from the specified collection.
- newArrayList(Iterator<? extends T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new
Listcontaining all elements from the givenIterator. - newArrayList(T...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new array-backed
Listcontaining the provided elements. - newBooleanArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new list to store Boolean values.
- newBooleanArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Booleans with the specified initial capacity.
- newBooleanArrayList(boolean...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Boolean objects initialized with the provided boolean values.
- newBooleanHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new Map instance where the values are of type Boolean.
- newBooleanHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new
Mapinstance with keys of typeKand boolean values. - newByteArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new list of Byte elements.
- newByteArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list to hold Byte elements with the specified initial capacity.
- newByteArrayList(byte...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Byte objects initialized with the specified byte values.
- newCharArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new list of characters.
- newCharArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new list of Characters with the specified initial capacity.
- newCharArrayList(char...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new
ListofCharacterelements from the given array of primitivecharvalues. - newDoubleArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new instance of a list that stores Double values.
- newDoubleArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list capable of storing double values with the specified initial capacity.
- newDoubleArrayList(double...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Doubles initialized with the given double values.
- newDoubleHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates a new map with generic keys and double values.
- newDoubleHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash map with keys of type
Kand values of typeDouble. - newFloatArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Float type.
- newFloatArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new instance of a list to hold float values with the specified initial capacity.
- newFloatArrayList(float...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Floats containing the provided initial values.
- newFloatHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates a new map with keys of type
Kand values of typeFloat. - newFloatHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new map with keys of generic type
Kandfloatvalues. - newHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new hash map with default settings.
- newHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash map with the specified initial capacity.
- newHashMap(Map<K, V>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new HashMap instance and populates it with the entries from the provided map.
- newHashSet() - Static method in class one.tranic.t.utils.Collections
-
Creates a new empty HashSet instance.
- newHashSet(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash set with the specified initial capacity.
- newIntArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new instance of a list that stores integers.
- newIntArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of integers with the specified initial capacity.
- newIntArrayList(int...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of integers initialized with the given values.
- newIntHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash map that maps keys of type
Kto integer values. - newIntHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash map where keys are of type K and values are of type Integer.
- newLinkedHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new instance of a LinkedHashMap.
- newLinkedHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new LinkedHashMap with the specified initial capacity.
- newLinkedHashMap(Map<K, V>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new LinkedHashMap or a fastutil Object2ObjectLinkedOpenHashMap based on the specified map.
- newLongArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Long type.
- newLongArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new instance of a list that can hold Long objects with the specified initial capacity.
- newLongArrayList(long...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new List of Longs initialized with the given long values.
- newLongHashMap() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new map instance where the keys are of generic type K, and the values are of type Long.
- newLongHashMap(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new hash map with keys of type
Kand values of typeLong. - newShortArrayList() - Static method in class one.tranic.t.utils.Collections
-
Creates and returns a new instance of a list that can store Short objects.
- newShortArrayList(int) - Static method in class one.tranic.t.utils.Collections
-
Creates a new list of Short objects with the specified initial capacity.
- newShortArrayList(short...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new List of Short values, optionally initializing it with the provided short values.
- newTreeSet(Collection<? extends T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new TreeSet with the elements provided in the specified collection.
- newTreeSetRB(Collection<? extends T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new TreeSet instance with the elements provided in the specified collection.
- newUnmodifiableHashSet() - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable empty set.
- newUnmodifiableHashSet(Set<T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable hash set containing the elements of the provided set.
- newUnmodifiableHashSet(T...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable
Setthat contains the specified elements. - newUnmodifiableList() - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable list.
- newUnmodifiableList(List<T>) - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable list from the provided list.
- newUnmodifiableList(T...) - Static method in class one.tranic.t.utils.Collections
-
Creates a new unmodifiable list containing the specified elements.
O
- of(String) - Static method in enum class one.tranic.t.utils.Platform
-
Returns the
Platformcorresponding to the provided platform name. - one.tranic.t.utils - package one.tranic.t.utils
P
- Paper - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the Paper platform.
- Platform - Enum Class in one.tranic.t.utils
-
Enum representing various Minecraft server platforms.
- PLAY_1_10 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_11 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_11_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_12 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_12_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_12_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_13 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_13_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_13_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_14 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_14_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_14_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_14_3 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_14_4 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_15 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_15_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_15_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_16 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_16_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_16_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_16_3 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_16_4 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_17 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_17_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_18 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_18_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_19 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_19_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_19_3 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_19_4 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_20 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_20_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_20_3 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_20_5 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_21 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_21_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_21_4 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_21_5 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_7 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_7_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_7_6 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_8 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_9 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_9_1 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_9_2 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- PLAY_1_9_3 - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
- ProtocolVersion - Enum Class in one.tranic.t.utils
-
Represents the Minecraft Java Edition protocol version mapping table.
R
- Rand - Class in one.tranic.t.utils
- Rand() - Constructor for class one.tranic.t.utils.Rand
- removeIf(Map<K, V>, Predicate<? super Map.Entry<K, V>>) - Static method in class one.tranic.t.utils.Collections
-
Removes all entries from the specified map that satisfy the provided predicate.
S
- ShreddedPaper - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the ShreddedPaper platform.
- Spigot - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the Spigot platform.
T
- toRawString() - Method in enum class one.tranic.t.utils.Platform
- toString() - Method in enum class one.tranic.t.utils.Platform
-
Returns the lowercase string representation of the platform.
U
- UNKNOWN - Enum constant in enum class one.tranic.t.utils.ProtocolVersion
V
- valueOf(String) - Static method in enum class one.tranic.t.utils.Platform
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class one.tranic.t.utils.ProtocolVersion
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class one.tranic.t.utils.Platform
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class one.tranic.t.utils.ProtocolVersion
-
Returns an array containing the constants of this enum class, in the order they are declared.
- Velocity - Enum constant in enum class one.tranic.t.utils.Platform
-
Represents the Velocity platform.
All Classes and Interfaces|All Packages