Packages

class Properties extends AnyRef

Object containing configuration properties.

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

Instance Constructors

  1. new Properties(contents: Map[String, String] = Map())

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(that: Any): Boolean
    Definition Classes
    Properties → AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def get[T](key: String)(implicit convert: (String) ⇒ T): Option[T]

    Get a value converted to an implicitly converted type.

    Get a value converted to an implicitly converted type.

    T

    Type of the value

    key

    Key

    convert

    Conversion implicit

    returns

    Value option

  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def getContents: Map[String, String]

    Get contents of the this properties set.

  12. def getOrElse[T](key: String, default: T)(implicit convert: (String) ⇒ T): T

    Get a value converted to an implicity cobverted type with a default value.

    Get a value converted to an implicity cobverted type with a default value.

    T

    Type of the value

    key

    Key

    default

    Default value

    convert

    Conversion implicit

    returns

    Value

  13. def has(key: String): Boolean

    Get whether a key has any value

    Get whether a key has any value

    key

    Key

    returns

    True when it exists

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def keys(): Set[String]

    Get a set if keys in this properties.

  17. def merge(properties: Properties): Properties

    Merges two Properties object.

    Merges two Properties object.

    properties

    the second properties object. These properties will override the keys of *this*.

    returns

    new properties.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def set[T](key: String, value: T)(implicit convert: (T) ⇒ String): Properties

    Set a value of an implicitly converted type

    Set a value of an implicitly converted type

    T

    Type of value

    key

    Key

    value

    Value

    convert

    Conversion implicit

    returns

    New immutable properties

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toJavaProperties: java.util.Properties

    Acquire a Java Properties object containing the same properties as this object.

    Acquire a Java Properties object containing the same properties as this object.

    returns

    a Java Properties object

    Note

    Some Flink internal systems use Properties. Only use this for those.

  24. def toString(): String
    Definition Classes
    Properties → AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped