Copiable

interface Copiable<out T>

Represents an object which can be copied. createCopy will create a new object with the same type (T) which is completely decoupled from the original one. Note that the copy is a deep copy.

Functions

createCopy
Link copied to clipboard
common
abstract fun createCopy(): T
Creates a deep copy of this object.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Inheritors

Builder
Link copied to clipboard
Block
Link copied to clipboard
StyleSet
Link copied to clipboard
TileGraphics
Link copied to clipboard

Sources

(source)
Link copied to clipboard