public enum CountLimitType extends Enum<CountLimitType>
Modifier and Type | Field and Description |
---|---|
private int |
type |
Modifier and Type | Method and Description |
---|---|
static CountLimitType |
deserialize(int type)
Deserialize CountLimitType.
|
int |
getType()
Gets type.
|
static CountLimitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountLimitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountLimitType EQ
count = [1,9]
public static final CountLimitType LTE
count = [1,9]
public static CountLimitType[] values()
for (CountLimitType c : CountLimitType.values()) System.out.println(c);
public static CountLimitType 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 nullpublic static CountLimitType deserialize(int type)
type
- the typepublic int getType()
Copyright © 2025. All rights reserved.