Package tigase.db
Enum AuthRepository.AccountStatus
- java.lang.Object
-
- java.lang.Enum<AuthRepository.AccountStatus>
-
- tigase.db.AuthRepository.AccountStatus
-
- All Implemented Interfaces:
Serializable,Comparable<AuthRepository.AccountStatus>
- Enclosing interface:
- AuthRepository
public static enum AuthRepository.AccountStatus extends Enum<AuthRepository.AccountStatus>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthRepository.AccountStatusbyValue(int value)intgetValue()static AuthRepository.AccountStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthRepository.AccountStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
active
public static final AuthRepository.AccountStatus active
-
disabled
public static final AuthRepository.AccountStatus disabled
-
pending
public static final AuthRepository.AccountStatus pending
-
system
public static final AuthRepository.AccountStatus system
-
vip
public static final AuthRepository.AccountStatus vip
-
paid
public static final AuthRepository.AccountStatus paid
-
-
Method Detail
-
values
public static AuthRepository.AccountStatus[] 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 (AuthRepository.AccountStatus c : AuthRepository.AccountStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthRepository.AccountStatus valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
byValue
public static AuthRepository.AccountStatus byValue(int value)
-
getValue
public int getValue()
-
-