Interface PlayerHeadObjectContents.ProfileProperty

All Superinterfaces:
net.kyori.examination.Examinable
Enclosing interface:
PlayerHeadObjectContents

public static interface PlayerHeadObjectContents.ProfileProperty extends net.kyori.examination.Examinable
A player profile property value with an optional signature.
Since:
4.25.0
  • Method Summary

    Modifier and Type
    Method
    Description
    default @NotNull Stream<? extends net.kyori.examination.ExaminableProperty>
     
    @NotNull String
    Gets the name of the property.
    @Nullable String
    Gets the signature of the property, if present.
    @NotNull String
    Gets the value of the property.

    Methods inherited from interface net.kyori.examination.Examinable

    examinableName, examine
  • Method Details

    • name

      @NotNull @NotNull String name()
      Gets the name of the property.
      Returns:
      the name
      Since:
      4.25.0
    • value

      @NotNull @NotNull String value()
      Gets the value of the property.
      Returns:
      the value
      Since:
      4.25.0
    • signature

      @Nullable @Nullable String signature()
      Gets the signature of the property, if present.
      Returns:
      the signature or null
      Since:
      4.25.0
    • examinableProperties

      @NotNull default @NotNull Stream<? extends net.kyori.examination.ExaminableProperty> examinableProperties()
      Specified by:
      examinableProperties in interface net.kyori.examination.Examinable