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 TLineType
static boolean
isLatinDigit
(char ch) static boolean
isLetterOrEmojiOrUnderscoreOrDigit
(char ch) static boolean
isLetterOrEmojiOrUnderscoreOrDollar
(char ch) static boolean
isQuote
(char ch) static boolean
isSpaceChar
(char ch) static TLineType
Returns 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_SPRITES
-
INCLUDE_DEF
-
IMPORT
-
STARTSUB
-
ENDSUB
-
INCLUDESUB
-
LOG
-
DUMP_MEMORY
-
COMMENT_SIMPLE
-
COMMENT_LONG_START
-
OPTION
-
-
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) -
isSpaceChar
public static boolean isSpaceChar(char ch) -
isLatinDigit
public static boolean isLatinDigit(char ch) -
isLetterOrEmojiOrUnderscoreOrDigit
public static boolean isLetterOrEmojiOrUnderscoreOrDigit(char ch) -
isLetterOrEmojiOrUnderscoreOrDollar
public static boolean isLetterOrEmojiOrUnderscoreOrDollar(char ch)
-