com.googlecode.jsonschema2pojo.DefaultGenerationConfig Maven / Gradle / Ivy
/**
* Copyright © 2010-2011 Nokia
*
* Licensed 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 com.googlecode.jsonschema2pojo;
import java.io.File;
/**
* A generation config that returns default values for all behavioural options.
*/
public class DefaultGenerationConfig implements GenerationConfig {
/**
* @return false
*/
@Override
public boolean isGenerateBuilders() {
return false;
}
/**
* @return false
*/
@Override
public boolean isUsePrimitives() {
return false;
}
/**
* Unsupported since no default source is possible.
*/
@Override
public File getSource() {
throw new UnsupportedOperationException("No default source available");
}
/**
* @return the current working directory
*/
@Override
public File getTargetDirectory() {
return new File(".");
}
/**
* @return the 'default' package (i.e. an empty string)
*/
@Override
public String getTargetPackage() {
return "";
}
/**
* @return an empty array (i.e. no word delimiters)
*/
@Override
public char[] getPropertyWordDelimiters() {
return new char[] {};
}
/**
* @return false
*/
@Override
public boolean isUseLongIntegers() {
return false;
}
}