Package org.dreambot.api.methods
Enum ForumRank
- java.lang.Object
- 
- java.lang.Enum<ForumRank>
- 
- org.dreambot.api.methods.ForumRank
 
 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ForumRank[]getRanks(int... values)static java.lang.StringgetRanksString(int... values)static java.lang.StringgetRanksString(ForumRank[] ranks)intgetTabCount()intgetValue()booleanisSponsor()booleanisVIP()static ForumRankvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ForumRank[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
VALIDATINGpublic static final ForumRank VALIDATING 
 - 
MEMBERSpublic static final ForumRank MEMBERS 
 - 
ADMINISTRATORpublic static final ForumRank ADMINISTRATOR 
 - 
BANNEDpublic static final ForumRank BANNED 
 - 
GLOBAL_MODERATORpublic static final ForumRank GLOBAL_MODERATOR 
 - 
VIPpublic static final ForumRank VIP 
 - 
SPONSORpublic static final ForumRank SPONSOR 
 - 
DEVELOPERpublic static final ForumRank DEVELOPER 
 - 
TWENTY_FIVE_DONORpublic static final ForumRank TWENTY_FIVE_DONOR 
 - 
FIFTY_DONORpublic static final ForumRank FIFTY_DONOR 
 - 
ONE_HUNDRED_DONORpublic static final ForumRank ONE_HUNDRED_DONOR 
 - 
CHAT_MODERATORpublic static final ForumRank CHAT_MODERATOR 
 - 
SUPER_MODERATORpublic static final ForumRank SUPER_MODERATOR 
 - 
SCHOLARpublic static final ForumRank SCHOLAR 
 - 
TRADE_WITH_CAUTIONpublic static final ForumRank TRADE_WITH_CAUTION 
 - 
SCRIPTERpublic static final ForumRank SCRIPTER 
 - 
NEW_MEMBERpublic static final ForumRank NEW_MEMBER 
 - 
SCRIPTER_PLUSpublic static final ForumRank SCRIPTER_PLUS 
 - 
SCRIPTER_PLUS_PLUSpublic static final ForumRank SCRIPTER_PLUS_PLUS 
 - 
EX_STAFFpublic static final ForumRank EX_STAFF 
 - 
DESIGNERpublic static final ForumRank DESIGNER 
 - 
LEAD_DESIGNERpublic static final ForumRank LEAD_DESIGNER 
 - 
STAFF_ADVISORpublic static final ForumRank STAFF_ADVISOR 
 - 
MIDDLE_MANpublic static final ForumRank MIDDLE_MAN 
 - 
TRIAL_MODERATORpublic static final ForumRank TRIAL_MODERATOR 
 - 
ADVERTISERpublic static final ForumRank ADVERTISER 
 - 
LIFETIME_SPONSORpublic static final ForumRank LIFETIME_SPONSOR 
 - 
ELITE_DONORpublic static final ForumRank ELITE_DONOR 
 - 
FIVE_HUNDRED_DONORpublic static final ForumRank FIVE_HUNDRED_DONOR 
 - 
FARMERpublic static final ForumRank FARMER 
 - 
SDN_MANAGERpublic static final ForumRank SDN_MANAGER 
 - 
DOCS_CONTRIBUTORpublic static final ForumRank DOCS_CONTRIBUTOR 
 - 
THREE_HUNDRED_DONORpublic static final ForumRank THREE_HUNDRED_DONOR 
 - 
NULLpublic static final ForumRank NULL 
 - 
BANNED_2public static final ForumRank BANNED_2 
 - 
TEMPpublic static final ForumRank TEMP 
 
- 
 - 
Method Detail- 
valuespublic static ForumRank[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ForumRank c : ForumRank.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ForumRank valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getRanksStringpublic static java.lang.String getRanksString(int... values) 
 - 
getRanksStringpublic static java.lang.String getRanksString(ForumRank[] ranks) 
 - 
getRankspublic static ForumRank[] getRanks(int... values) 
 - 
getValuepublic int getValue() 
 - 
getTabCountpublic int getTabCount() 
 - 
isVIPpublic boolean isVIP() 
 - 
isSponsorpublic boolean isSponsor() 
 
- 
 
-