[][src]Enum genco::java::Java

pub enum Java<'el> {
    Primitive {
        boxed: &'static str,
        primitive: &'static str,
    },
    Class(Type<'el>),
    Local {
        name: Cons<'el>,
    },
    Optional(Optional<'el>),
}

Java token specialization.

Variants

Primitive

Primitive type.

Fields of Primitive

boxed: &'static str

The boxed variant of the primitive type.

primitive: &'static str

The primitive-primitive type.

Class(Type<'el>)

A class, with or without arguments, imported from somewhere.

Local

A local name with no specific qualification.

Fields of Local

name: Cons<'el>

Name of class.

Optional(Optional<'el>)

Optional type.

Implementations

impl<'el> Java<'el>[src]

pub fn path<P: Into<Cons<'el>>>(&self, part: P) -> Java<'el>[src]

Extend the type with a nested path.

This discards any arguments associated with it.

pub fn with_arguments(&self, arguments: Vec<Java<'el>>) -> Java<'el>[src]

Add arguments to the given variable.

Only applies to classes, any other will return the same value.

pub fn as_raw(&self) -> Java<'el>[src]

Get the raw type.

A raw type is one without generic arguments.

pub fn as_boxed(&self) -> Java<'el>[src]

Get a guaranteed boxed version of a type.

pub fn equals(&self, other: &Java<'el>) -> bool[src]

Compare if two types are equal.

pub fn name(&self) -> Cons<'el>[src]

Get the name of the type.

pub fn package(&self) -> Option<Cons<'el>>[src]

Get the name of the type.

pub fn arguments(&self) -> Option<&[Java<'el>]>[src]

Get the arguments

pub fn is_optional(&self) -> bool[src]

Check if type is optional.

pub fn is_primitive(&self) -> bool[src]

Check if variable is primitive.

pub fn as_optional(&self) -> Option<&Optional<'el>>[src]

Get type as optional.

pub fn as_field(&self) -> Java<'el>[src]

Get the field type (includes optionality).

pub fn as_value(&self) -> Java<'el>[src]

Get the value type (strips optionality).

pub fn is_generic(&self) -> bool[src]

Check if type is generic.

Trait Implementations

impl<'el> Clone for Java<'el>[src]

impl<'el> Custom for Java<'el>[src]

type Extra = Extra<'el>

Extra data associated with building a formatting element.

impl<'el> Debug for Java<'el>[src]

impl<'el> Eq for Java<'el>[src]

impl<'el> From<&'el Java<'el>> for Tokens<'el, Java<'el>>[src]

impl<'el> From<Java<'el>> for Tokens<'el, Java<'el>>[src]

impl<'el> Hash for Java<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for Argument<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for Class<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for (Cons<'el>, Constructor<'el>)[src]

impl<'el> IntoTokens<'el, Java<'el>> for Enum<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for Field<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for Interface<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for Method<'el>[src]

impl<'el> IntoTokens<'el, Java<'el>> for BlockComment<'el>[src]

impl<'el> Ord for Java<'el>[src]

impl<'el> PartialEq<Java<'el>> for Java<'el>[src]

impl<'el> PartialOrd<Java<'el>> for Java<'el>[src]

impl<'el> StructuralEq for Java<'el>[src]

impl<'el> StructuralPartialEq for Java<'el>[src]

Auto Trait Implementations

impl<'el> !RefUnwindSafe for Java<'el>

impl<'el> !Send for Java<'el>

impl<'el> !Sync for Java<'el>

impl<'el> Unpin for Java<'el>

impl<'el> UnwindSafe for Java<'el>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.