Package guru.mikelue.jdut.yaml
Class YamlTags
- java.lang.Object
-
- guru.mikelue.jdut.yaml.YamlTags
-
public final class YamlTags extends Object
Defines the tags of JDUT used in YAML.
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_TAGS
Default tags could be used in header of YAML document.static String
NAMESPACE_DB_TYPE
Defines the type of jdbc data.
"tag:jdut.mikelue.guru:jdbcType:1.8/"static String
NAMESPACE_JDUT
Defines the jdut objects.
"tag:jdut.mikelue.guru:1.0/"static String
NAMESPACE_SQL
Defines the sql objects.
"tag:jdut.mikelue.guru:sql:1.0/"static String
SHORTHAND_DB_TYPE
Defines the default shorthand forNAMESPACE_DB_TYPE
.
"!dbtype!"static String
SHORTHAND_JDUT
Defines the default shorthand forNAMESPACE_JDUT
.
"!jdut!"static String
SHORTHAND_SQL
Defines the default shorthand forNAMESPACE_SQL
.
"!sql!"
-
-
-
Field Detail
-
NAMESPACE_DB_TYPE
public static final String NAMESPACE_DB_TYPE
Defines the type of jdbc data.
"tag:jdut.mikelue.guru:jdbcType:1.8/"- See Also:
- Constant Field Values
-
NAMESPACE_JDUT
public static final String NAMESPACE_JDUT
Defines the jdut objects.
"tag:jdut.mikelue.guru:1.0/"- See Also:
- Constant Field Values
-
NAMESPACE_SQL
public static final String NAMESPACE_SQL
Defines the sql objects.
"tag:jdut.mikelue.guru:sql:1.0/"- See Also:
- Constant Field Values
-
SHORTHAND_DB_TYPE
public static final String SHORTHAND_DB_TYPE
Defines the default shorthand forNAMESPACE_DB_TYPE
.
"!dbtype!"- See Also:
- Constant Field Values
-
SHORTHAND_JDUT
public static final String SHORTHAND_JDUT
Defines the default shorthand forNAMESPACE_JDUT
.
"!jdut!"- See Also:
- Constant Field Values
-
SHORTHAND_SQL
public static final String SHORTHAND_SQL
Defines the default shorthand forNAMESPACE_SQL
.
"!sql!"- See Also:
- Constant Field Values
-
DEFAULT_TAGS
public static final String DEFAULT_TAGS
Default tags could be used in header of YAML document.
%TAG !jdut! tag:jdut.mikelue.guru:1.0/
%TAG !dbtype! tag:jdut.mikelue.guru:jdbcType:1.8/
%TAG !sql! tag:jdut.mikelue.guru:sql:1.0/
-
-