blob: 4818dad497dd38426832b82a8b19ccece67bf6b0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jena.riot.writer;
import org.apache.jena.riot.RIOT;
import org.apache.jena.sparql.util.Context;
/** Package-scoped utilities */
/*package*/ class WriterLib {
private static final IndentStyle dftIndentStyle = IndentStyle.WIDE;
// Determine the directive style (applies to PREFIX and BASE).
/*package*/ static DirectiveStyle directiveStyle(Context context) {
if ( context == null )
return DirectiveStyle.systemDefault;
Object x = context.get(RIOT.symTurtleDirectiveStyle);
if ( x instanceof String s )
return DirectiveStyle.create(s);
if ( x instanceof DirectiveStyle directive)
return directive;
// Default choice; includes null in context.
return DirectiveStyle.systemDefault;
}
/*package*/ static IndentStyle indentStyle(Context context) {
if ( context == null )
return dftIndentStyle;
Object x = context.get(RIOT.symTurtleIndentStyle);
if ( x instanceof String s ) {
IndentStyle style = IndentStyle.create(s);
return style == null ? dftIndentStyle : style;
}
// Default choice; includes null in context.
return dftIndentStyle;
}
}