Enum Class SyncType

java.lang.Object
java.lang.Enum<SyncType>
net.luckperms.api.event.sync.SyncType
All Implemented Interfaces:
Serializable, Comparable<SyncType>, Constable

public enum SyncType extends Enum<SyncType>
Represents the type of synchronisation task.
Since:
5.5
  • Enum Constant Details

    • FULL

      public static final SyncType FULL
      A full sync will be performed - all groups, users and tracks
    • SPECIFIC_USER

      public static final SyncType SPECIFIC_USER
      Only a specific user will be synced
  • Method Details

    • values

      public static SyncType[] 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 SyncType 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