Class BlockArrayClipboard
- All Implemented Interfaces:
- Clipboard,- Extent,- InputExtent,- OutputExtent,- Closeable,- Flushable,- AutoCloseable,- Iterable<BlockVector3>
BlockStates and
 other data as lists or maps. Clipboard may need to be flushed before use
 if using clipboard-on-disk.- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classStores entity data.
- 
Constructor SummaryConstructorsConstructorDescriptionBlockArrayClipboard(SimpleClipboard parent, BlockVector3 offset) Create a new instance, storage-backed by the given clipboard.BlockArrayClipboard(Region region) Create a new instance.BlockArrayClipboard(Region region, SimpleClipboard parent) Create a new instance, storage-backed by the given clipboard.BlockArrayClipboard(Region region, UUID clipboardId) Create a new instance.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Close the clipboard.createEntity(Location location, BaseEntity entity) Create an entity at the given location.createEntity(Location location, BaseEntity entity, UUID uuid) Create an entity at the given location, forcing a UUID onto the entity Only use if you are aware of the consequences of forcing a UUID to an entity.voidflush()Flush the clipboard if appropriate.getBiome(BlockVector3 position) Get the biome at the given location.getBiomeType(int x, int y, int z) getBlock(int x, int y, int z) getBlock(BlockVector3 position) Get a snapshot of the block at the given location.Get the dimensions of the copy, which is at minimum (1, 1, 1).Get a list of all entities.getEntities(Region region) Get a list of all entities within the given region.getFullBlock(int x, int y, int z) getFullBlock(BlockVector3 position) Get an immutable snapshot of the block at the given location.Get the maximum point in the extent.Get the minimum point in the extent.Get the origin point from which the copy was made from.Get the bounding region of this extent.booleanReturns true if the clipboard has biome data.iterator()voidremoveEntity(int x, int y, int z, UUID uuid) Create an entity at the given location.voidremoveEntity(Entity entity) Remove entity from clipboard.booleanbooleansetBiome(BlockVector3 position, BiomeType biome) Set the biome.<B extends BlockStateHolder<B>>
 booleansetBlock(int x, int y, int z, B block) <B extends BlockStateHolder<B>>
 booleansetBlock(BlockVector3 position, B block) Change the block at the given location to the given block.voidsetOrigin(BlockVector3 origin) Set the origin point from which the copy was made from.booleansetTile(BlockVector3 position, CompoundTag tag) Deprecated, for removal: This API element is subject to removal in a future version.booleantile(int x, int y, int z, FaweCompoundTag tag) Sets a tile/block entity at the given location.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.sk89q.worldedit.extent.clipboard.Clipboardapply, getArea, getHeight, getLength, getURI, getVolume, getWidth, paste, paste, paste, paste, paste, paste, save, save, transformMethods inherited from interface com.sk89q.worldedit.extent.ExtentaddCaves, addOre, addOres, addPostProcessor, addProcessor, addSchems, apply, cancel, center, commit, contains, contains, countBlocks, countBlocks, disableHistory, disableQueue, enableHistory, enableQueue, generate, getBlockDistribution, getBlockDistributionWithData, getHighestTerrainBlock, getHighestTerrainBlock, getMaxY, getMinY, getNearestSurfaceLayer, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, isQueueEnabled, isWorld, lazyCopy, regenerateChunk, relight, relightBlock, relightSky, replaceBlocks, replaceBlocks, replaceBlocks, setBlocks, setBlocks, setBlocks, spawnResourceMethods inherited from interface com.sk89q.worldedit.extent.InputExtentgetBiome, getBrightness, getBrightness, getEmittedLight, getEmittedLight, getHeightMap, getOpacity, getOpacity, getSkyLight, getSkyLightMethods inherited from interface java.lang.IterableforEach, spliteratorMethods inherited from interface com.sk89q.worldedit.extent.OutputExtentfullySupports3DBiomes, setBiome, setBlockLight, setBlockLight, setHeightMap, setSkyLight, setSkyLight, setTile
- 
Constructor Details- 
BlockArrayClipboardCreate a new instance. Creates a parent clipboard based on the clipboard settings in settings.yml, with a randomly generatedUUIDID. Depending on settings, parent will be on of:DiskOptimizedClipboardMemoryOptimizedClipboardCPUOptimizedClipboardIf using clipboard-on-disk, the clipboard should be flushed Clipboard.flush()before use.- Parameters:
- region- the bounding region
 
- 
BlockArrayClipboardCreate a new instance, storage-backed by the given clipboard. Clipboard must be of one of the following types:DiskOptimizedClipboardMemoryOptimizedClipboardCPUOptimizedClipboardDo not use this constructor if you do not know what you are doing. See BlockArrayClipboard(Region)orBlockArrayClipboard(Region, UUID)- Parameters:
- parent- storage clipboard
- offset- offset of clipboard region from origin
 
- 
BlockArrayClipboardCreate a new instance. Creates a parent clipboard based on the clipboard settings in settings.yml. Depending on settings, parent will be on of:DiskOptimizedClipboardMemoryOptimizedClipboardCPUOptimizedClipboardIf using clipboard-on-disk, the clipboard should be flushed ( Clipboard.flush()) before use.- Parameters:
- region- the bounding region
- clipboardId- clipboard ID
 
- 
BlockArrayClipboardCreate a new instance, storage-backed by the given clipboard. Clipboard must be of one of the following types:DiskOptimizedClipboardMemoryOptimizedClipboardCPUOptimizedClipboardDo not use this constructor if you do not know what you are doing. See BlockArrayClipboard(Region)orBlockArrayClipboard(Region, UUID)- Parameters:
- region- the bounding region
- parent- storage clipboard
 
 
- 
- 
Method Details- 
getRegionDescription copied from interface:ClipboardGet the bounding region of this extent.Implementations should return a copy of the region. 
- 
getOriginDescription copied from interface:ClipboardGet the origin point from which the copy was made from.
- 
setOriginDescription copied from interface:ClipboardSet the origin point from which the copy was made from.
- 
getMinimumPointDescription copied from interface:ExtentGet the minimum point in the extent.If the extent is unbounded, then a large (negative) value may be returned. - Specified by:
- getMinimumPointin interface- Extent
- Returns:
- the minimum point
 
- 
getMaximumPointDescription copied from interface:ExtentGet the maximum point in the extent.If the extent is unbounded, then a large (positive) value may be returned. - Specified by:
- getMaximumPointin interface- Extent
- Returns:
- the maximum point
 
- 
getBlockDescription copied from interface:InputExtentGet a snapshot of the block at the given location.If the given position is out of the bounds of the extent, then the behavior is undefined (an air block could be returned). However, nullshould not be returned.The returned block is immutable and is a snapshot of the block at the time of call. It has no position attached to it, so it could be reused in Patterns and so on.- Specified by:
- getBlockin interface- InputExtent
- Parameters:
- position- position of the block
- Returns:
- the block
 
- 
getFullBlockDescription copied from interface:InputExtentGet an immutable snapshot of the block at the given location.- Specified by:
- getFullBlockin interface- InputExtent
- Parameters:
- position- position of the block
- Returns:
- the block
 
- 
setBlockDescription copied from interface:OutputExtentChange the block at the given location to the given block. The operation may not tie the givenBlockStateHolderto the world, so future changes to theBlockStateHolderdo not affect the world until this method is called again.The return value of this method indicates whether the change was probably successful. It may not be successful if, for example, the location is out of the bounds of the extent. It may be unsuccessful if the block passed is the same as the one in the world. However, the return value is only an estimation and it may be incorrect, but it could be used to count, for example, the approximate number of changes. - Specified by:
- setBlockin interface- OutputExtent
- Parameters:
- position- position of the block
- block- block to set
- Returns:
- true if the block was successfully set (return value may not be accurate)
 
- 
tileDescription copied from interface:OutputExtentSets a tile/block entity at the given location.- Specified by:
- tilein interface- OutputExtent
- Parameters:
- x- the x position
- y- the y position
- z- the z position
- tag- the tile/block entity to set
- Returns:
- trueif the tile/block entity was placed
 
- 
setTile@Deprecated(forRemoval=true, since="2.11.2") public boolean setTile(BlockVector3 position, CompoundTag tag) Deprecated, for removal: This API element is subject to removal in a future version.
- 
setBlockpublic <B extends BlockStateHolder<B>> boolean setBlock(int x, int y, int z, B block) throws WorldEditException - Specified by:
- setBlockin interface- OutputExtent
- Throws:
- WorldEditException
 
- 
hasBiomespublic boolean hasBiomes()Description copied from interface:ClipboardReturns true if the clipboard has biome data. This can be checked sinceInputExtent.getBiome(BlockVector3)strongly suggests returningBiomeTypes.OCEANinstead ofnullif biomes aren't present.
- 
getBiomeDescription copied from interface:InputExtentGet the biome at the given location.If there is no biome available, then the ocean biome should be returned. As implementation varies per Minecraft version, this may not exactly get this positions biome. On versions prior to 1.15, this will get the entire column. On later versions it will get the 4x4x4 cube's biome. - Specified by:
- getBiomein interface- InputExtent
- Parameters:
- position- the (x, y, z) location to check the biome at
- Returns:
- the biome at the location
- See Also:
 
- 
setBiomeDescription copied from interface:OutputExtentSet the biome.As implementation varies per Minecraft version, this may set more than this position's biome. On versions prior to 1.15, this will set the entire column. On later versions it will set the 4x4x4 cube. - Specified by:
- setBiomein interface- OutputExtent
- Parameters:
- position- the (x, y, z) location to set the biome at
- biome- the biome to set to
- Returns:
- true if the biome was successfully set (return value may not be accurate)
 
- 
setBiome- Specified by:
- setBiomein interface- OutputExtent
 
- 
getEntitiesDescription copied from interface:ExtentGet a list of all entities within the given region.If the extent is not wholly loaded (i.e. a world being simulated in the game will not have every chunk loaded), then this list may not be incomplete. - Specified by:
- getEntitiesin interface- Extent
- Parameters:
- region- the region in which entities must be contained
- Returns:
- a list of entities
 
- 
getEntitiesDescription copied from interface:ExtentGet a list of all entities.If the extent is not wholly loaded (i.e. a world being simulated in the game will not have every chunk loaded), then this list may not be incomplete. - Specified by:
- getEntitiesin interface- Extent
- Returns:
- a list of entities
 
- 
createEntityDescription copied from interface:ExtentCreate an entity at the given location.- Specified by:
- createEntityin interface- Extent
- Parameters:
- location- the location
- entity- the entity
- Returns:
- a reference to the created entity, or null if the entity could not be created
 
- 
createEntityDescription copied from interface:ExtentCreate an entity at the given location, forcing a UUID onto the entity Only use if you are aware of the consequences of forcing a UUID to an entity.- Specified by:
- createEntityin interface- Extent
- Parameters:
- location- the location
- entity- the entity
- uuid- UUID to force the entity to have
- Returns:
- a reference to the created entity, or null if the entity could not be created
 
- 
removeEntityDescription copied from interface:ExtentCreate an entity at the given location.- Specified by:
- removeEntityin interface- Extent
- Parameters:
- x- the x coordinate
- y- the y coordinate
- z- the z coordinate
- uuid- the unique identifier of the entity
 
- 
getBlock- Specified by:
- getBlockin interface- InputExtent
 
- 
getFullBlock- Specified by:
- getFullBlockin interface- InputExtent
 
- 
getBiomeType- Specified by:
- getBiomeTypein interface- InputExtent
 
- 
iterator- Specified by:
- iteratorin interface- Clipboard
- Specified by:
- iteratorin interface- Iterable<BlockVector3>
 
- 
iterator2d- Specified by:
- iterator2din interface- Clipboard
 
- 
iterator
- 
getDimensionsDescription copied from interface:ClipboardGet the dimensions of the copy, which is at minimum (1, 1, 1).- Specified by:
- getDimensionsin interface- Clipboard
- Returns:
- the dimensions
 
- 
removeEntityDescription copied from interface:ClipboardRemove entity from clipboard.- Specified by:
- removeEntityin interface- Clipboard
 
- 
getParent
- 
closepublic void close()Description copied from interface:ClipboardClose the clipboard. May not allow further reading of the clipboard if saved on disk.
- 
flushpublic void flush()Description copied from interface:ClipboardFlush the clipboard if appropriate. Only does something if using clipboard-on-disk. Blocking method and ensures all data is saved to disk for any further operation with the clipboard.
 
-