Enum jni::signature::JavaType[][src]

pub enum JavaType {
    Primitive(Primitive),
    Object(String),
    Array(Box<JavaType>),
    Method(Box<TypeSignature>),
}

Enum representing any java type in addition to method signatures.

Variants

Methods

impl JavaType
[src]

Parse a type string into a JavaType enum.

Trait Implementations

impl Eq for JavaType
[src]

impl PartialEq for JavaType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for JavaType
[src]

Formats the value using the given formatter. Read more

impl Clone for JavaType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for JavaType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for JavaType

impl Sync for JavaType