public enum BehaviorInterestTimeWindow extends Enum<BehaviorInterestTimeWindow>
| 限定符和类型 | 类和说明 |
|---|---|
static class |
BehaviorInterestTimeWindow.Adapter |
| 枚举常量和说明 |
|---|
FIFTEEN_DAY |
ONE_YEAR |
SEVEN_DAY |
SIX_MONTH |
THIRTY_DAY |
THREE_MONTH |
| 限定符和类型 | 方法和说明 |
|---|---|
static BehaviorInterestTimeWindow |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static BehaviorInterestTimeWindow |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static BehaviorInterestTimeWindow[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final BehaviorInterestTimeWindow SEVEN_DAY
public static final BehaviorInterestTimeWindow FIFTEEN_DAY
public static final BehaviorInterestTimeWindow THIRTY_DAY
public static final BehaviorInterestTimeWindow THREE_MONTH
public static final BehaviorInterestTimeWindow SIX_MONTH
public static final BehaviorInterestTimeWindow ONE_YEAR
public static BehaviorInterestTimeWindow[] values()
for (BehaviorInterestTimeWindow c : BehaviorInterestTimeWindow.values()) System.out.println(c);
public static BehaviorInterestTimeWindow valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
public String toString()
toString 在类中 Enum<BehaviorInterestTimeWindow>public static BehaviorInterestTimeWindow fromValue(String text)
Copyright © 2020. All rights reserved.