LowCodeLoadOptions
Inheritance: java.lang.Object
public class LowCodeLoadOptions
Options for loading template file.
Constructors
Constructor | Description |
---|---|
LowCodeLoadOptions() |
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getClass() | |
getInputFile() | Gets the file(with path if needed) of the template. |
getInputStream() | Gets the Stream of the template. |
hashCode() | |
notify() | |
notifyAll() | |
setInputFile(String value) | Sets the file(with path if needed) of the template. |
setInputStream(InputStream value) | Sets the Stream of the template. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
LowCodeLoadOptions()
public LowCodeLoadOptions()
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getInputFile()
public String getInputFile()
Gets the file(with path if needed) of the template.
Remarks
When setting a non-null and non-empty path to this property, the previously set value for getInputStream() will be ignored.
Returns: java.lang.String
getInputStream()
public InputStream getInputStream()
Gets the Stream of the template.
Remarks
When setting a non-null Stream to this property, the previously set value for getInputFile() will be ignored.
Returns: java.io.InputStream
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setInputFile(String value)
public void setInputFile(String value)
Sets the file(with path if needed) of the template.
Remarks
When setting a non-null and non-empty path to this property, the previously set value for getInputStream() will be ignored.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setInputStream(InputStream value)
public void setInputStream(InputStream value)
Sets the Stream of the template.
Remarks
When setting a non-null Stream to this property, the previously set value for getInputFile() will be ignored.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.io.InputStream |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |