public enum RefererType extends Enum<RefererType>
| Enum Constant and Description |
|---|
baidu
百度
|
others |
rmrb
人民日报
|
saas |
tianmai
天脉
|
zsyh |
| Modifier and Type | Method and Description |
|---|---|
static RefererType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefererType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefererType rmrb
public static final RefererType baidu
public static final RefererType tianmai
public static final RefererType saas
public static final RefererType zsyh
public static final RefererType others
public static RefererType[] values()
for (RefererType c : RefererType.values()) System.out.println(c);
public static RefererType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.