LowCodeSaveOptions

Inheritance: java.lang.Object

public class LowCodeSaveOptions

Options for saving generated results in low code way.

Constructors

ConstructorDescription
LowCodeSaveOptions()

Methods

MethodDescription
equals(Object arg0)
getClass()
getOutputFile()Gets the file(with path if needed) for saving the generated data.
getOutputStream()Gets the Stream for writing the generated data to.
getSaveFormat()Gets the save format for the output.
hashCode()
notify()
notifyAll()
setOutputFile(String value)Sets the file(with path if needed) for saving the generated data.
setOutputStream(InputStream value)Sets the Stream for writing the generated data to.
setSaveFormat(int value)Sets the save format for the output.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

LowCodeSaveOptions()

public LowCodeSaveOptions()

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getOutputFile()

public String getOutputFile()

Gets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, getOutputStream() will be ignored.

Returns: java.lang.String

getOutputStream()

public InputStream getOutputStream()

Gets the Stream for writing the generated data to. When setting this property with value other than null, getOutputFile() will be ignored.

Returns: java.io.InputStream

getSaveFormat()

public int getSaveFormat()

Gets the save format for the output. Generally, for specific process in low code way, only some specific formats are allowed. Please specify the correct format for corresponding process, otherwise unexpected result or even exception may be caused.

See SaveFormat.

Returns: int

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setOutputFile(String value)

public void setOutputFile(String value)

Sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, getOutputStream() will be ignored.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setOutputStream(InputStream value)

public void setOutputStream(InputStream value)

Sets the Stream for writing the generated data to. When setting this property with value other than null, getOutputFile() will be ignored.

Parameters:

ParameterTypeDescription
valuejava.io.InputStream

setSaveFormat(int value)

public void setSaveFormat(int value)

Sets the save format for the output. Generally, for specific process in low code way, only some specific formats are allowed. Please specify the correct format for corresponding process, otherwise unexpected result or even exception may be caused.

See SaveFormat.

Parameters:

ParameterTypeDescription
valueint

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int