Enum xswag_syntax_java::lex::Keyword [] [src]

pub enum Keyword {
    Abstract,
    Assert,
    Boolean,
    Break,
    Byte,
    Case,
    Catch,
    Char,
    Class,
    Const,
    Continue,
    Default,
    Do,
    Double,
    Else,
    Enum,
    Extends,
    Final,
    Finally,
    Float,
    For,
    If,
    Goto,
    Implements,
    Import,
    Instanceof,
    Int,
    Interface,
    Long,
    Native,
    New,
    Package,
    Private,
    Protected,
    Public,
    Return,
    Short,
    Static,
    Strictfp,
    Super,
    Switch,
    Synchronized,
    This,
    Throw,
    Throws,
    Transient,
    Try,
    Void,
    Volatile,
    While,
}

Represents one of the Java keywords

Variants

Methods

impl Keyword
[src]

Trait Implementations

impl Copy for Keyword
[src]

impl Clone for Keyword
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Keyword
[src]

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

This method tests for !=.

impl Eq for Keyword
[src]

impl Debug for Keyword
[src]

Formats the value using the given formatter.

impl Display for Keyword
[src]

Formats the value using the given formatter. Read more

impl FromStr for Keyword
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Into<String> for Keyword
[src]

Performs the conversion.