All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.core.JsMap Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/*
 * Copyright 2018 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package elemental2.core;

import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;

@JsType(isNative = true, name = "Map", namespace = JsPackage.GLOBAL)
public class JsMap
    implements JsIterable>> {
  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface ConstructorIterableJsIterableTypeParameterArrayUnionType {
    @JsOverlay
    static JsMap.ConstructorIterableJsIterableTypeParameterArrayUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default KEY asKEY() {
      return Js.cast(this);
    }

    @JsOverlay
    default VALUE asVALUE() {
      return Js.cast(this);
    }
  }

  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface ConstructorIterableUnionType {
    @JsOverlay
    static JsMap.ConstructorIterableUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default JsArray<
            JsArray>>
        asJsArray() {
      return Js.cast(this);
    }

    @JsOverlay
    default JsIterable<
            JsArray>>
        asJsIterable() {
      return Js.cast(this);
    }

    @JsOverlay
    default boolean isJsArray() {
      return (Object) this instanceof JsArray;
    }
  }

  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface EntriesJsIteratorIterableTypeParameterArrayUnionType {
    @JsOverlay
    static JsMap.EntriesJsIteratorIterableTypeParameterArrayUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default KEY asKEY() {
      return Js.cast(this);
    }

    @JsOverlay
    default VALUE asVALUE() {
      return Js.cast(this);
    }
  }

  @JsFunction
  public interface ForEachCallbackFn {
    Object onInvoke(VALUE p0, KEY p1, JsMap p2);
  }

  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface JsIterableTypeParameterArrayUnionType {
    @JsOverlay
    static JsMap.JsIterableTypeParameterArrayUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default KEY asKEY() {
      return Js.cast(this);
    }

    @JsOverlay
    default VALUE asVALUE() {
      return Js.cast(this);
    }
  }

  public int size;

  public JsMap() {}

  public JsMap(
      JsMap.ConstructorIterableJsIterableTypeParameterArrayUnionType[][] iterable) {}

  public JsMap(JsMap.ConstructorIterableUnionType iterable) {}

  public JsMap(
      JsArray>>
          iterable) {}

  public JsMap(
      JsIterable<
              JsArray>>
          iterable) {}

  public native void clear();

  public native boolean delete(KEY key);

  public native JsIteratorIterable<
          JsArray>>
      entries();

  public native  Object forEach(
      JsMap.ForEachCallbackFn callback, THIS thisArg);

  public native Object forEach(JsMap.ForEachCallbackFn callback);

  public native VALUE get(KEY key);

  public native boolean has(KEY key);

  public native JsIteratorIterable keys();

  public native JsMap set(KEY key, VALUE value);

  public native JsIteratorIterable values();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy