Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ChangeMap

Hierarchy

  • ChangeMap

Index

Methods

containsKey

  • containsKey(pointer: string): boolean
  • Parameters

    • pointer: string

    Returns boolean

    true if an entry exists, false if not

descendants

  • Parameters

    • pointer: string

    Returns ChangeMap

    changemap of descendant changes

entrySet

  • entrySet(): Array<object>
  • Returns Array<object>

    the entry array

    Example:

    changeMap.entrySet().forEach(function(entry) {
        console.log(entry.key, entry.value);
    });

get

  • get(pointer: string): any
  • Parameters

    • pointer: string

    Returns any

    the change map value, if it exists, otherwise null

intersection

  • Parameters

    • pointer: string

    Returns ChangeMap

    changemap of intersection changes