Object

org.antipathy.scoozie.api.Functions

Basic

Related Doc: package Functions

Permalink

object Basic

Oozie basic functions

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def appendAll(src: String, append: String, delimeter: String): String

    Permalink

    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

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def concat(s1: String, s2: String): String

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def firstNotNull(value1: String, value2: String): String

    Permalink

    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[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def replaceAll(src: String, regex: String, replacement: String): String

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  20. val timestamp: String

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  25. def trim(s: String): String

    Permalink

    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

    Permalink

    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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped