public enum Cmp extends Enum<Cmp> implements NameCodeEnum<String>
| 限定符和类型 | 方法和说明 |
|---|---|
abstract <T extends Comparable<T>> |
cmp(T one,
T other) |
String |
getValue() |
static Cmp |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static Cmp[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetCodepublic static final Cmp EQ
public static final Cmp LT
public static final Cmp LE
public static final Cmp GT
public static final Cmp GE
public static Cmp[] values()
for (Cmp c : Cmp.values()) System.out.println(c);
public static Cmp valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public abstract <T extends Comparable<T>> boolean cmp(T one, T other)
Copyright © 2022. All rights reserved.