Skip to content

Package: Features

Features

Coverage

1: /*
2: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3: *
4: * Copyright (c) 2004-2021 Oracle and/or its affiliates. All rights reserved.
5: *
6: * Oracle licenses this file to You under the Apache License, Version 2.0
7: * (the "License"); you may not use this file except in compliance with
8: * the License. You may obtain a copy of the License at
9: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS,
14: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15: * See the License for the specific language governing permissions and
16: * limitations under the License.
17: */
18: package com.sun.xml.stream.buffer.sax;
19:
20: public class Features {
21:
22: private Features() {
23: }
24:
25: public static final String NAMESPACES_FEATURE =
26: "http://xml.org/sax/features/namespaces";
27: public static final String NAMESPACE_PREFIXES_FEATURE =
28: "http://xml.org/sax/features/namespace-prefixes";
29: public static final String EXTERNAL_GENERAL_ENTITIES =
30: "http://xml.org/sax/features/external-general-entities";
31: public static final String EXTERNAL_PARAMETER_ENTITIES =
32: "http://xml.org/sax/features/external-parameter-entities";
33: public static final String STRING_INTERNING_FEATURE =
34: "http://xml.org/sax/features/string-interning";
35: }