Package net.sourceforge.plantuml.tim
Enum TLineType
- java.lang.Object
-
- java.lang.Enum<TLineType>
-
- net.sourceforge.plantuml.tim.TLineType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TLineType
getFromLineInternal(java.lang.String s)
static boolean
isLatinDigit(char ch)
static boolean
isLetter(char ch)
static boolean
isLetterOrDigit(char ch)
static boolean
isLetterOrUnderscore(char ch)
static boolean
isLetterOrUnderscoreOrDigit(char ch)
static boolean
isLetterOrUnderscoreOrDollar(char ch)
static boolean
isQuote(char ch)
static boolean
isSpaceChar(char ch)
static TLineType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TLineType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAIN
public static final TLineType PLAIN
-
AFFECTATION_DEFINE
public static final TLineType AFFECTATION_DEFINE
-
AFFECTATION
public static final TLineType AFFECTATION
-
ASSERT
public static final TLineType ASSERT
-
IF
public static final TLineType IF
-
IFDEF
public static final TLineType IFDEF
-
UNDEF
public static final TLineType UNDEF
-
IFNDEF
public static final TLineType IFNDEF
-
ELSE
public static final TLineType ELSE
-
ELSEIF
public static final TLineType ELSEIF
-
ENDIF
public static final TLineType ENDIF
-
WHILE
public static final TLineType WHILE
-
ENDWHILE
public static final TLineType ENDWHILE
-
FOREACH
public static final TLineType FOREACH
-
ENDFOREACH
public static final TLineType ENDFOREACH
-
DECLARE_RETURN_FUNCTION
public static final TLineType DECLARE_RETURN_FUNCTION
-
DECLARE_PROCEDURE
public static final TLineType DECLARE_PROCEDURE
-
END_FUNCTION
public static final TLineType END_FUNCTION
-
RETURN
public static final TLineType RETURN
-
LEGACY_DEFINE
public static final TLineType LEGACY_DEFINE
-
LEGACY_DEFINELONG
public static final TLineType LEGACY_DEFINELONG
-
THEME
public static final TLineType THEME
-
INCLUDE
public static final TLineType INCLUDE
-
INCLUDE_DEF
public static final TLineType INCLUDE_DEF
-
IMPORT
public static final TLineType IMPORT
-
STARTSUB
public static final TLineType STARTSUB
-
ENDSUB
public static final TLineType ENDSUB
-
INCLUDESUB
public static final TLineType INCLUDESUB
-
LOG
public static final TLineType LOG
-
DUMP_MEMORY
public static final TLineType DUMP_MEMORY
-
COMMENT_SIMPLE
public static final TLineType COMMENT_SIMPLE
-
COMMENT_LONG_START
public static final TLineType COMMENT_LONG_START
-
-
Method Detail
-
values
public static TLineType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TLineType c : TLineType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TLineType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getFromLineInternal
public static TLineType getFromLineInternal(java.lang.String s)
-
isQuote
public static boolean isQuote(char ch)
-
isLetterOrUnderscoreOrDigit
public static boolean isLetterOrUnderscoreOrDigit(char ch)
-
isLetterOrUnderscore
public static boolean isLetterOrUnderscore(char ch)
-
isLetterOrUnderscoreOrDollar
public static boolean isLetterOrUnderscoreOrDollar(char ch)
-
isLetterOrDigit
public static boolean isLetterOrDigit(char ch)
-
isLetter
public static boolean isLetter(char ch)
-
isSpaceChar
public static boolean isSpaceChar(char ch)
-
isLatinDigit
public static boolean isLatinDigit(char ch)
-
-