Enum Class UUIDUtil

java.lang.Object
java.lang.Enum<UUIDUtil>
us.talabrek.ultimateskyblock.util.UUIDUtil
All Implemented Interfaces:
Serializable, Comparable<UUIDUtil>, Constable

public enum UUIDUtil extends Enum<UUIDUtil>
Utility for handling UUIDs.
  • Method Details

    • values

      public static UUIDUtil[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static UUIDUtil valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      @Nullable public static @Nullable UUID fromString(@Nullable @Nullable String id)
      Returns a UUID object from a UUID String. Accepts short Strings (withouth dashes). Returns null if the given String is not a valid UUID.
      Parameters:
      id - String to convert to a UUID.
      Returns:
      UUID from the given String, or null if input is null or invalid.
    • asString

      @NotNull public static @NotNull String asString(@Nullable @Nullable UUID uuid)
      Returns the given UUID as String. Returns an empty string if the given UUID is null.
      Parameters:
      uuid - UUID to convert to string.
      Returns:
      Given UUID as String, or an empty String if the given UUID is null.