Packages

c

java.util

Properties

class Properties extends Hashtable[AnyRef, AnyRef]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Properties
  2. Hashtable
  3. Serializable
  4. Cloneable
  5. Map
  6. Dictionary
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Properties()
  2. new Properties(defaults: Properties)

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 clear(): Unit
    Definition Classes
    HashtableMap
  6. def clone(): AnyRef
    Definition Classes
    Hashtable → AnyRef
  7. def compute(key: AnyRef, remappingFunction: BiFunction[_ >: AnyRef, _ >: AnyRef, _ <: AnyRef]): AnyRef
    Definition Classes
    Map
  8. def computeIfAbsent(key: AnyRef, mappingFunction: Function[_ >: AnyRef, _ <: AnyRef]): AnyRef
    Definition Classes
    Map
  9. def computeIfPresent(key: AnyRef, remappingFunction: BiFunction[_ >: AnyRef, _ >: AnyRef, _ <: AnyRef]): AnyRef
    Definition Classes
    Map
  10. def contains(value: Any): Boolean
    Definition Classes
    Hashtable
  11. def containsKey(key: Any): Boolean
    Definition Classes
    HashtableMap
  12. def containsValue(value: Any): Boolean
    Definition Classes
    HashtableMap
  13. val defaults: Properties
    Attributes
    protected
  14. def elements(): Enumeration[AnyRef]
    Definition Classes
    HashtableDictionary
  15. def entrySet(): Set[Entry[AnyRef, AnyRef]]
    Definition Classes
    HashtableMap
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def forEach(action: BiConsumer[_ >: AnyRef, _ >: AnyRef]): Unit
    Definition Classes
    Map
  20. def get(key: Any): AnyRef
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getOrDefault(key: Any, defaultValue: AnyRef): AnyRef
    Definition Classes
    Map
  23. def getProperty(key: String, defaultValue: String): String
  24. def getProperty(key: String): String
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def isEmpty(): Boolean
    Definition Classes
    HashtableMapDictionary
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def keySet(): Set[AnyRef]
    Definition Classes
    HashtableMap
  29. def keys(): Enumeration[AnyRef]
    Definition Classes
    HashtableDictionary
  30. def list(out: PrintWriter): Unit
  31. def list(out: PrintStream): Unit
  32. def load(reader: Reader): Unit
  33. def load(inStream: InputStream): Unit
  34. def merge(key: AnyRef, value: AnyRef, remappingFunction: BiFunction[_ >: AnyRef, _ >: AnyRef, _ <: AnyRef]): AnyRef
    Definition Classes
    Map
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. def propertyNames(): Enumeration[_]
  39. def put(key: AnyRef, value: AnyRef): AnyRef
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  40. def putAll(m: Map[_ <: AnyRef, _ <: AnyRef]): Unit
    Definition Classes
    HashtableMap
  41. def putIfAbsent(key: AnyRef, value: AnyRef): AnyRef
    Definition Classes
    Map
  42. def remove(key: Any): AnyRef
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  43. def remove(key: Any, value: Any): Boolean
    Definition Classes
    Map
  44. def replace(key: AnyRef, value: AnyRef): AnyRef
    Definition Classes
    Map
  45. def replace(key: AnyRef, oldValue: AnyRef, newValue: AnyRef): Boolean
    Definition Classes
    Map
  46. def replaceAll(function: BiFunction[_ >: AnyRef, _ >: AnyRef, _ <: AnyRef]): Unit
    Definition Classes
    Map
  47. def setProperty(key: String, value: String): AnyRef
  48. def size(): Int
    Definition Classes
    HashtableMapDictionary
  49. def store(writer: Writer, comments: String): Unit
  50. def store(out: OutputStream, comments: String): Unit
  51. def stringPropertyNames(): Set[String]
  52. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  53. def toString(): String
    Definition Classes
    Hashtable → AnyRef → Any
  54. def usingEntry[T](entry: Entry[AnyRef, AnyRef])(apply: (AnyRef, AnyRef) => T): T

    Helper method used to detect concurrent modification exception when accessing map entires.

    Helper method used to detect concurrent modification exception when accessing map entires. IllegalStateException means the entry is no longer available (remove)

    Attributes
    protected[util]
    Definition Classes
    Map
    Annotations
    @alwaysinline()
  55. def values(): Collection[AnyRef]
    Definition Classes
    HashtableMap
  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def save(out: OutputStream, comments: String): Unit
    Annotations
    @Deprecated
    Deprecated

Inherited from Hashtable[AnyRef, AnyRef]

Inherited from Serializable

Inherited from Cloneable

Inherited from Map[AnyRef, AnyRef]

Inherited from Dictionary[AnyRef, AnyRef]

Inherited from AnyRef

Inherited from Any

Ungrouped