Interface EventContextKey<T>

    • Method Detail

      • allowedType

        Type allowedType()
        Gets the allowed type for the value of this key.

        This is a concrete type equal to the parameter T

        Returns:
        The allowed type
      • isInstance

        boolean isInstance​(Object value)
        Return whether the value is an instance of this key's value type.
        Parameters:
        value - value to check
        Returns:
        if instance
      • cast

        T cast​(Object value)
        Cast the provided value to the value type.
        Parameters:
        value - value
        Returns:
        the casted value
        Throws:
        ClassCastException - if value is not of the correct type