public enum TorqueSchemaInheritance extends Enum<TorqueSchemaInheritance>
| Enum Constant and Description | 
|---|
| FALSEThis column does nor define an inheritance column. | 
| SINGLEThis column determines the inheritance class of the table. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getValue()Returns the value of the inheritance attribute. | 
| String | toString() | 
| static TorqueSchemaInheritance | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TorqueSchemaInheritance[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TorqueSchemaInheritance SINGLE
public static final TorqueSchemaInheritance FALSE
public static TorqueSchemaInheritance[] values()
for (TorqueSchemaInheritance c : TorqueSchemaInheritance.values()) System.out.println(c);
public static TorqueSchemaInheritance 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 String getValue()
public String toString()
toString in class Enum<TorqueSchemaInheritance>Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.