Enum Class JavaType

java.lang.Object
java.lang.Enum<JavaType>
com.google.protobuf.JavaType
All Implemented Interfaces:
Serializable, Comparable<JavaType>, Constable

@ExperimentalApi public enum JavaType extends Enum<JavaType>
Enum that identifies the Java types required to store protobuf fields.
  • Enum Constant Details

    • VOID

      public static final JavaType VOID
    • INT

      public static final JavaType INT
    • LONG

      public static final JavaType LONG
    • FLOAT

      public static final JavaType FLOAT
    • DOUBLE

      public static final JavaType DOUBLE
    • BOOLEAN

      public static final JavaType BOOLEAN
    • STRING

      public static final JavaType STRING
    • BYTE_STRING

      public static final JavaType BYTE_STRING
    • ENUM

      public static final JavaType ENUM
    • MESSAGE

      public static final JavaType MESSAGE
  • Method Details

    • values

      public static JavaType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JavaType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getDefaultDefault

      public Object getDefaultDefault()
      The default default value for fields of this type, if it's a primitive type.
    • getType

      public Class<?> getType()
      Gets the required type for a field that would hold a value of this type.
    • getBoxedType

      public Class<?> getBoxedType()
      Returns:
      the boxedType
    • isValidType

      public boolean isValidType(Class<?> t)
      Indicates whether or not this JavaType can be applied to a field of the given type.