Factions3/src/com/massivecraft/factions/struct/ChatMode.java

41 lines
709 B
Java
Raw Normal View History

2011-09-24 12:04:49 +02:00
package com.massivecraft.factions.struct;
public enum ChatMode
{
2011-09-24 12:04:49 +02:00
FACTION(2, "faction chat"),
ALLIANCE(1, "alliance chat"),
PUBLIC(0, "public chat");
public final int value;
public final String nicename;
private ChatMode(final int value, final String nicename)
{
2011-09-24 12:04:49 +02:00
this.value = value;
this.nicename = nicename;
}
public boolean isAtLeast(ChatMode role)
{
2011-09-24 12:04:49 +02:00
return this.value >= role.value;
}
public boolean isAtMost(ChatMode role)
{
2011-09-24 12:04:49 +02:00
return this.value <= role.value;
}
@Override
public String toString()
{
2011-09-24 12:04:49 +02:00
return this.nicename;
}
public ChatMode getNext()
{
if (this == PUBLIC) return ALLIANCE;
if (this == ALLIANCE)return FACTION;
return PUBLIC;
}
2011-09-24 12:04:49 +02:00
}