Package net.sourceforge.plantuml.text
Enum Class TLineType
- All Implemented Interfaces:
Serializable,Comparable<TLineType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic TLineTypestatic booleanisLatinDigit(char ch) static booleanisLetter(char ch) static booleanisLetterOrDigit(char ch) static booleanisLetterOrUnderscore(char ch) static booleanisLetterOrUnderscoreOrDigit(char ch) static booleanisLetterOrUnderscoreOrDollar(char ch) static booleanisQuote(char ch) static booleanisSpaceChar(char ch) static TLineTypeReturns the enum constant of this class with the specified name.static TLineType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLAIN
-
AFFECTATION_DEFINE
-
AFFECTATION
-
ASSERT
-
IF
-
IFDEF
-
UNDEF
-
IFNDEF
-
ELSE
-
ELSEIF
-
ENDIF
-
WHILE
-
ENDWHILE
-
FOREACH
-
ENDFOREACH
-
DECLARE_RETURN_FUNCTION
-
DECLARE_PROCEDURE
-
END_FUNCTION
-
RETURN
-
LEGACY_DEFINE
-
LEGACY_DEFINELONG
-
THEME
-
INCLUDE
-
INCLUDE_DEF
-
IMPORT
-
STARTSUB
-
ENDSUB
-
INCLUDESUB
-
LOG
-
DUMP_MEMORY
-
COMMENT_SIMPLE
-
COMMENT_LONG_START
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getFromLineInternal
-
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)
-