@@ -26,73 +26,73 @@ public class EXistOutputKeys {
26
26
/**
27
27
* Parameter "item-separator" from the XQuery serialization spec 3.1
28
28
*/
29
- public final static String ITEM_SEPARATOR = "item-separator" ;
29
+ public static final String ITEM_SEPARATOR = "item-separator" ;
30
30
31
- public final static String OUTPUT_DOCTYPE = "output-doctype" ;
31
+ public static final String OUTPUT_DOCTYPE = "output-doctype" ;
32
32
33
- public final static String EXPAND_XINCLUDES = "expand-xincludes" ;
33
+ public static final String EXPAND_XINCLUDES = "expand-xincludes" ;
34
34
35
- public final static String PROCESS_XSL_PI = "process-xsl-pi" ;
35
+ public static final String PROCESS_XSL_PI = "process-xsl-pi" ;
36
36
37
- public final static String HIGHLIGHT_MATCHES = "highlight-matches" ;
37
+ public static final String HIGHLIGHT_MATCHES = "highlight-matches" ;
38
38
39
- public final static String INDENT_SPACES = "indent-spaces" ;
39
+ public static final String INDENT_SPACES = "indent-spaces" ;
40
40
41
- public final static String STYLESHEET = "stylesheet" ;
41
+ public static final String STYLESHEET = "stylesheet" ;
42
42
43
- public final static String STYLESHEET_PARAM = "stylesheet-param" ;
43
+ public static final String STYLESHEET_PARAM = "stylesheet-param" ;
44
44
45
- public final static String COMPRESS_OUTPUT = "compress-output" ;
45
+ public static final String COMPRESS_OUTPUT = "compress-output" ;
46
46
47
- public final static String ADD_EXIST_ID = "add-exist-id" ;
47
+ public static final String ADD_EXIST_ID = "add-exist-id" ;
48
48
49
- public final static String XINCLUDE_PATH = "xinclude-path" ;
49
+ public static final String XINCLUDE_PATH = "xinclude-path" ;
50
50
51
51
/**
52
52
* Enforce XHTML namespace on elements with no namespace
53
53
*/
54
- public final static String ENFORCE_XHTML = "enforce-xhtml" ;
54
+ public static final String ENFORCE_XHTML = "enforce-xhtml" ;
55
55
56
56
/**
57
57
* Applies to JSON serialization only: preserve namespace prefixes in JSON properties
58
58
* by replacing ":" with "_", so element foo:bar becomes "foo_bar".
59
59
*/
60
- public final static String JSON_OUTPUT_NS_PREFIX = "preserve-prefix" ;
60
+ public static final String JSON_OUTPUT_NS_PREFIX = "preserve-prefix" ;
61
61
62
62
/**
63
63
* Applies to JSON serialization only: sets the jsonp callback function
64
64
*/
65
- public final static String JSONP = "jsonp" ;
65
+ public static final String JSONP = "jsonp" ;
66
66
67
67
/**
68
68
* JSON serialization: prefix XML attributes with a '@' when serializing
69
69
* them as JSON properties
70
70
*/
71
- public final static String JSON_PREFIX_ATTRIBUTES = "prefix-attributes" ;
71
+ public static final String JSON_PREFIX_ATTRIBUTES = "prefix-attributes" ;
72
72
73
73
/**
74
74
* JSON serialization: if text nodes are encountered which consist solely of whitespace then they
75
75
* will be ignored by the serializer
76
76
*/
77
- public final static String JSON_IGNORE_WHITESPACE_TEXT_NODES = "json-ignore-whitespace-text-nodes" ;
77
+ public static final String JSON_IGNORE_WHITESPACE_TEXT_NODES = "json-ignore-whitespace-text-nodes" ;
78
78
79
79
/**
80
80
* Defines the output method to be used for serializing nodes within json output.
81
81
*/
82
- public final static String JSON_NODE_OUTPUT_METHOD = "json-node-output-method" ;
82
+ public static final String JSON_NODE_OUTPUT_METHOD = "json-node-output-method" ;
83
83
84
84
/**
85
85
* Defines the output for JSON serializing to array even if only one item.
86
86
*/
87
- public final static String JSON_ARRAY_OUTPUT = "json-array-output" ;
87
+ public static final String JSON_ARRAY_OUTPUT = "json-array-output" ;
88
88
89
89
/**
90
90
* Determines whether the presence of multiple keys in a map item with the same string value
91
91
* will or will not raise serialization error err:SERE0022.
92
92
*/
93
- public final static String ALLOW_DUPLICATE_NAMES = "allow-duplicate-names" ;
93
+ public static final String ALLOW_DUPLICATE_NAMES = "allow-duplicate-names" ;
94
94
95
- public final static String HTML_VERSION = "html-version" ;
95
+ public static final String HTML_VERSION = "html-version" ;
96
96
97
97
/**
98
98
* When serializing an XDM this should be used
@@ -103,7 +103,7 @@ public class EXistOutputKeys {
103
103
*
104
104
* Set to "yes" to enable xdm-serialization rules, false otherwise.
105
105
*/
106
- public final static String XDM_SERIALIZATION = "xdm-serialization" ;
106
+ public static final String XDM_SERIALIZATION = "xdm-serialization" ;
107
107
108
108
/**
109
109
* Enforce newline at the end of JSON and XML documents.
@@ -113,7 +113,7 @@ public class EXistOutputKeys {
113
113
* exist-db and will lead to less meaningless changes in git and tools
114
114
* like diff will be able to provide more meaningful information as well.
115
115
*/
116
- public final static String INSERT_FINAL_NEWLINE = "insert-final-newline" ;
116
+ public static final String INSERT_FINAL_NEWLINE = "insert-final-newline" ;
117
117
118
- public final static String USE_CHARACTER_MAPS = "use-character-maps" ;
118
+ public static final String USE_CHARACTER_MAPS = "use-character-maps" ;
119
119
}
0 commit comments