Package com.bergerkiller.bukkit.common

Examples of com.bergerkiller.bukkit.common.BlockLocation


  public boolean remove(final String world, final int x, final int y, final int z) {
    return super.remove(new BlockLocation(world, x, y, z));
  }

  public boolean add(Block block) {
    return super.add(new BlockLocation(block));
  }
View Full Code Here


  public boolean add(final String world, IntVector3 coord) {
    return this.add(world, coord.x, coord.y, coord.z);
  }

  public boolean add(final String world, final int x, final int y, final int z) {
    return super.add(new BlockLocation(world, x, y, z));
  }
View Full Code Here

  public boolean containsKey(final String world, IntVector3 coord) {
    return this.containsKey(world, coord.x, coord.y, coord.z);
  }

  public boolean containsKey(final String world, final int x, final int y, final int z) {
    return super.containsKey(new BlockLocation(world, x, y, z));
  }
View Full Code Here

  public boolean containsKey(final String world, final int x, final int y, final int z) {
    return super.containsKey(new BlockLocation(world, x, y, z));
  }

  public boolean containsKey(Block block) {
    return super.containsKey(new BlockLocation(block));
  }
View Full Code Here

  public V get(World world, final int x, final int y, final int z) {
    return this.get(world.getName(), x, y, z);
  }

  public V get(final String world, final int x, final int y, final int z) {
    return super.get(new BlockLocation(world, x, y, z));
  }
View Full Code Here

  public V get(final String world, final int x, final int y, final int z) {
    return super.get(new BlockLocation(world, x, y, z));
  }

  public V get(Block block) {
    return super.get(new BlockLocation(block));
  }
View Full Code Here

  public V put(final String world, IntVector3 coord, V value) {
    return this.put(world, coord.x, coord.y, coord.z, value);
  }

  public V put(Block block, V value) {
    return super.put(new BlockLocation(block), value);
  }
View Full Code Here

  public V put(World world, final int x, final int y, final int z, V value) {
    return this.put(world.getName(), x, y, z, value);
  }

  public V put(final String world, final int x, final int y, final int z, V value) {
    return super.put(new BlockLocation(world, x, y, z), value);
  }
View Full Code Here

  public V remove(World world, final int x, final int y, final int z) {
    return this.remove(world.getName(), x, y, z);
  }

  public V remove(final String world, final int x, final int y, final int z) {
    return super.remove(new BlockLocation(world, x, y, z));
  }
View Full Code Here

  public V remove(final String world, final int x, final int y, final int z) {
    return super.remove(new BlockLocation(world, x, y, z));
  }

  public V remove(Block block) {
    return super.remove(new BlockLocation(block));
  }
View Full Code Here

TOP

Related Classes of com.bergerkiller.bukkit.common.BlockLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.