object Basic
Oozie basic functions
- Alphabetic
- By Inheritance
- Basic
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
appendAll(src: String, append: String, delimeter: String): String
Add the append string into each splitted sub-strings of the first string(=src=).
Add the append string into each splitted sub-strings of the first string(=src=). The split is performed into src string using the delimiter . E.g. appendAll("/a/b/,/c/b/,/c/d/", "ADD", ",") will return /a/b/ADD,/c/b/ADD,/c/d/ADD . A append string with null value is consider as an empty string. A delimiter string with value null is considered as no append in the string.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
concat(s1: String, s2: String): String
returns the concatenation of 2 strings.
returns the concatenation of 2 strings. A string with null value is considered as an empty string.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
firstNotNull(value1: String, value2: String): String
returns the first not null value, or null if both are null .Note that if the output of this function is null and it is used as string, the EL library converts it to an empty string.
returns the first not null value, or null if both are null .Note that if the output of this function is null and it is used as string, the EL library converts it to an empty string. This is the common behavior when using firstNotNull() in node configuration sections.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
replaceAll(src: String, regex: String, replacement: String): String
Replace each occurrence of regular expression match in the first string with the replacement string and return the replaced string.
Replace each occurrence of regular expression match in the first string with the replacement string and return the replaced string. A 'regex' string with null value is considered as no change. A 'replacement' string with null value is consider as an empty string.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
timestamp: String
returns the UTC current date and time in W3C format down to the second (YYYY-MM-DDThh:mm:ss.sZ).
returns the UTC current date and time in W3C format down to the second (YYYY-MM-DDThh:mm:ss.sZ). I.e.: 1997-07-16T19:20:30.45Z
-
def
toConfigurationStr(variable: String): String
returns an XML encoded Configuration representation of a Map.
returns an XML encoded Configuration representation of a Map. This function is useful to encode as a single property the complete action-data of an action, wf:actionData(String actionName) , in order to pass it in full to another action.
-
def
toJsonStr(variable: String): String
returns an XML encoded JSON representation of a Map.
returns an XML encoded JSON representation of a Map. This function is useful to encode as a single property the complete action-data of an action, wf:actionData(String actionName) , in order to pass it in full to another action.
-
def
toPropertiesStr(variable: String): String
returns an XML encoded Properties representation of a Map.
returns an XML encoded Properties representation of a Map. This function is useful to encode as a single property the complete action-data of an action, wf:actionData(String actionName) , in order to pass it in full to another action.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
trim(s: String): String
returns the trimmed value of the given string.
returns the trimmed value of the given string. A string with null value is considered as an empty string.
-
def
urlEncode(s: String): String
returns the URL UTF-8 encoded value of the given string.
returns the URL UTF-8 encoded value of the given string. A string with null value is considered as an empty string.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )