Enum MessageVariant

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MessageVariant>, PEnumValue<MessageVariant>, PValue<MessageVariant>, net.morimekta.util.Numeric, net.morimekta.util.Stringable

    @Generated("providence-maven-plugin")
    public enum MessageVariant
    extends java.lang.Enum<MessageVariant>
    implements PEnumValue<MessageVariant>
    Struct variant for StructType. The lower-case of the enum value is the thrift keyword.

    struct: No 'required' fields must be present (set to non-null value). UNION: No required fields. Only one field set to be valid. EXCEPTION: No 'cause' field, 'message' field *must* be a string (java).

    • Method Detail

      • values

        public static MessageVariant[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MessageVariant c : MessageVariant.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MessageVariant valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • asInteger

        public int asInteger()
        Specified by:
        asInteger in interface net.morimekta.util.Numeric
      • asString

        @Nonnull
        public java.lang.String asString()
        Specified by:
        asString in interface net.morimekta.util.Stringable
      • findById

        public static MessageVariant findById​(int id)
        Find a value based in its ID
        Parameters:
        id - Id of value
        Returns:
        Value found or null
      • findById

        public static MessageVariant findById​(java.lang.Integer id)
        Find a value based in its ID
        Parameters:
        id - Id of value
        Returns:
        Value found or null
      • findByName

        public static MessageVariant findByName​(java.lang.String name)
        Find a value based in its name
        Parameters:
        name - Name of value
        Returns:
        Value found or null
      • valueForId

        @Nonnull
        public static MessageVariant valueForId​(int id)
        Get a value based in its ID
        Parameters:
        id - Id of value
        Returns:
        Value found
        Throws:
        java.lang.IllegalArgumentException - If no value for id is found
      • valueForName

        @Nonnull
        public static MessageVariant valueForName​(java.lang.String name)
        Get a value based in its name
        Parameters:
        name - Name of value
        Returns:
        Value found
        Throws:
        java.lang.IllegalArgumentException - If no value for name is found, or null name