Interface LongArrayBinaryTag

All Superinterfaces:
ArrayBinaryTag, BinaryTag, BinaryTagLike, net.kyori.examination.Examinable, Iterable<Long>

public interface LongArrayBinaryTag
extends ArrayBinaryTag, Iterable<Long>
A binary tag holding a long-array value.
Since:
4.0.0
  • Method Details

    • of

      @NotNull static @NotNull LongArrayBinaryTag of​(long @NotNull ... value)
      Creates a binary tag holding a long-array value.
      Parameters:
      value - the value
      Returns:
      a binary tag
      Since:
      4.0.0
    • type

      @NotNull default @NotNull BinaryTagType<LongArrayBinaryTag> type()
      Description copied from interface: BinaryTag
      Gets the tag type.
      Specified by:
      type in interface ArrayBinaryTag
      Specified by:
      type in interface BinaryTag
      Returns:
      the tag type
    • value

      long @NotNull [] value()
      Gets the value.

      The returned array is a copy.

      Returns:
      the value
      Since:
      4.0.0
    • size

      int size()
      Gets the length of the array.
      Returns:
      value size
      Since:
      4.2.0
    • get

      long get​(int index)
      Gets the value at index in this tag.
      Parameters:
      index - the index in the array
      Returns:
      the long at the index in the array
      Throws:
      IndexOutOfBoundsException - if index is < 0 or ≥ size()
      Since:
      4.2.0
    • iterator

      @NotNull PrimitiveIterator.OfLong iterator()

      The returned iterator is immutable.

      Specified by:
      iterator in interface Iterable<Long>
      Since:
      4.2.0
    • spliterator

      @NotNull Spliterator.OfLong spliterator()
      Specified by:
      spliterator in interface Iterable<Long>
    • stream

      @NotNull @NotNull LongStream stream()
      Create a stream whose elements are the elements of this array tag.
      Returns:
      a new stream
      Since:
      4.2.0
    • forEachLong

      void forEachLong​(@NotNull @NotNull LongConsumer action)
      Perform an action for every long in the backing array.
      Parameters:
      action - the action to perform
      Since:
      4.2.0