Packages

object BasicFunctions

Oozie basic functions

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicFunctions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. 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.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. 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.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. 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.

  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. 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.

  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. 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

  21. 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.

  22. 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.

  23. 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.

  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. 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.

  26. 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.

  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped