All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tvd12.gamebox.constant.PlayerStatus Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.tvd12.gamebox.constant;

import lombok.Getter;

public enum PlayerStatus implements IPlayerStatus {

	NULL(0),
	VIEWING(1),
	PLAYING(2),
	SPEAKING(3);
	
	@Getter
	private int id;
	
	private PlayerStatus(int id) {
		this.id = id;
	}
	
	@Override
	public String getName() {
		return toString();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy