public enum Relational extends Enum<Relational>
| 枚举常量和说明 |
|---|
ManyToMany |
ManyToOne |
OneToMany |
OneToOne |
public static final Relational OneToOne
public static final Relational OneToMany
public static final Relational ManyToOne
public static final Relational ManyToMany
public String val
public static Relational[] values()
for (Relational c : Relational.values()) System.out.println(c);
public static Relational valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019 Mirren Tools. All rights reserved.