forked from TuxCoding/FastLogin
Document states
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user