public class DdlOption extends AbstractModel
| Constructor and Description | 
|---|
| DdlOption() | 
| DdlOption(DdlOption source)NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getDdlObject()Get DDL type, such as database, table, and view. | 
| String[] | getDdlValue()Get Specific DDL value, such as `Create` or `Drop`. | 
| void | setDdlObject(String DdlObject)Set DDL type, such as database, table, and view. | 
| void | setDdlValue(String[] DdlValue)Set Specific DDL value, such as `Create` or `Drop`. | 
| void | toMap(HashMap<String,String> map,
     String prefix)Internal implementation, normal users should not use it. | 
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonStringpublic DdlOption()
public DdlOption(DdlOption source)
public String getDdlObject()
public void setDdlObject(String DdlObject)
DdlObject - DDL type, such as database, table, and view.
Note: This field may return null, indicating that no valid values can be obtained.public String[] getDdlValue()
public void setDdlValue(String[] DdlValue)
DdlValue - Specific DDL value, such as `Create` or `Drop`.
Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2022. All rights reserved.