com.github.mrenou.jacksonatic.annotation.JacksonaticJsonProperty.java Source code

Java tutorial

Introduction

Here is the source code for com.github.mrenou.jacksonatic.annotation.JacksonaticJsonProperty.java

Source

/**
 * Copyright (C) 2015 Morgan Renou (mrenou@gmail.com)
 *
 * 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.github.mrenou.jacksonatic.annotation;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.lang.annotation.Annotation;

public class JacksonaticJsonProperty implements JsonProperty, JacksonaticAnnotation {

    private String value = USE_DEFAULT_NAME;

    private boolean required = false;

    private int index = INDEX_UNKNOWN;

    private String defaultValue = "";

    private JacksonaticJsonProperty() {
    }

    @Override
    public String value() {
        return value;
    }

    @Override
    public boolean required() {
        return required;
    }

    @Override
    public int index() {
        return index;
    }

    @Override
    public String defaultValue() {
        return defaultValue;
    }

    @Override
    public Class<? extends Annotation> annotationType() {
        return JsonProperty.class;
    }

    @Override
    public String toString() {
        return "@JsonProperty{" + "value='" + value + '\'' + ", required=" + required + ", index=" + index
                + ", defaultValue='" + defaultValue + '\'' + '}';
    }

    public static Builder jsonProperty() {
        return new Builder();
    }

    public static Builder jsonProperty(String value) {
        return new Builder().value(value);
    }

    public static class Builder implements AnnotationBuilder {

        private JacksonaticJsonProperty jsonProperty = new JacksonaticJsonProperty();

        public Builder value(String value) {
            jsonProperty.value = value;
            return this;
        }

        public Builder required(boolean required) {
            jsonProperty.required = required;
            return this;
        }

        public Builder index(int index) {
            jsonProperty.index = index;
            return this;
        }

        public Builder defaultValue(String defaultValue) {
            jsonProperty.defaultValue = defaultValue;
            return this;
        }

        @Override
        public JsonProperty build() {
            return jsonProperty;
        }
    }
}