Document states

This commit is contained in:
games647
2023-12-11 15:04:03 +01:00
committed by Smart123s
parent e566740dde
commit 485af5e044

View File

@ -26,9 +26,25 @@
package com.github.games647.fastlogin.core.shared; package com.github.games647.fastlogin.core.shared;
public enum FloodgateState { public enum FloodgateState {
/**
* Purely Java profile
*/
FALSE(0), FALSE(0),
/**
* Purely Bedrock profile
*/
TRUE(1), TRUE(1),
/**
* Bedrock profile is bidirectional associated with the Java Mojang profile.
*/
LINKED(2), LINKED(2),
/**
* Data before floodgate database migration. Floodgate state is unknown.
*/
NOT_MIGRATED(3); NOT_MIGRATED(3);
private int value; private int value;