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]

[src]

Parse a type string into a JavaType enum.

Trait Implementations

impl Eq for JavaType
[src]

impl PartialEq for JavaType
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for JavaType
[src]

[src]

Formats the value using the given formatter.

impl Display for JavaType
[src]

[src]

Formats the value using the given formatter. Read more