Class CliToken


  • public class CliToken
    extends Object
    A parsed token in the command line interface.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • CliToken

        public CliToken​(CliToken delegate)
      • CliToken

        public CliToken​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public CliToken getDelegate()
      • createText

        public static CliToken createText​(String text)
        Create a text token.
        Parameters:
        text - the text
        Returns:
        the token
      • createBlank

        public static CliToken createBlank​(String blank)
        Create a new blank token.
        Parameters:
        blank - the blank value
        Returns:
        the token
      • value

        public String value()
        Returns:
        the token value
      • raw

        public String raw()
        Returns:
        the raw token value, that may contain unescaped chars, for instance
      • isText

        public boolean isText()
        Returns:
        true when it's a text token
      • isBlank

        public boolean isBlank()
        Returns:
        true when it's a blank token
      • tokenize

        public static List<CliToken> tokenize​(String s)
        Tokenize the string argument and return a list of tokens.
        Parameters:
        s - the tokenized string
        Returns:
        the tokens