All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itfsw.query.builder.support.model.JsonRule Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
/*
 * Copyright (c) 2017.
 *
 * 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.itfsw.query.builder.support.model;

import com.fasterxml.jackson.databind.ObjectMapper;

import java.util.List;

/**
 * ---------------------------------------------------------------------------
 *
 * ---------------------------------------------------------------------------
 * @author: hewei
 * @time:2017/10/30 16:00
 * ---------------------------------------------------------------------------
 */
public class JsonRule implements IGroup, IRule {
    // --------------------------- Rule --------------------------------------
    private String id;
    private String field;
    private String type;
    private String input;
    private String operator;
    private Object value;
    private Object data;
    // --------------------------- Group --------------------------------------
    private String condition;
    private Boolean not;
    private List rules;

    /**
     * 判断是否为group
     * @return
     */
    public boolean isGroup() {
        return condition != null;
    }

    /**
     * group
     * @return
     */
    public IGroup toGroup() {
        return this;
    }

    /**
     * rule
     * @return
     */
    public IRule toRule() {
        return this;
    }

    /**
     * to String
     * @return
     */
    @Override
    public String toString() {
        ObjectMapper mapper = new ObjectMapper();
        try {
            return mapper.writeValueAsString(this);
        } catch (Exception e) {
            return super.toString();
        }
    }

    /**
     * Getter method for property id.
     * @return property value of id
     * @author hewei
     */
    @Override
    public String getId() {
        return id;
    }

    /**
     * Setter method for property id.
     * @param id value to be assigned to property id
     * @author hewei
     */
    @Override
    public void setId(String id) {
        this.id = id;
    }

    /**
     * Getter method for property field.
     * @return property value of field
     * @author hewei
     */
    @Override
    public String getField() {
        return field;
    }

    /**
     * Setter method for property field.
     * @param field value to be assigned to property field
     * @author hewei
     */
    @Override
    public void setField(String field) {
        this.field = field;
    }

    /**
     * Getter method for property type.
     * @return property value of type
     * @author hewei
     */
    @Override
    public String getType() {
        return type;
    }

    /**
     * Setter method for property type.
     * @param type value to be assigned to property type
     * @author hewei
     */
    @Override
    public void setType(String type) {
        this.type = type;
    }

    /**
     * Getter method for property input.
     * @return property value of input
     * @author hewei
     */
    @Override
    public String getInput() {
        return input;
    }

    /**
     * Setter method for property input.
     * @param input value to be assigned to property input
     * @author hewei
     */
    @Override
    public void setInput(String input) {
        this.input = input;
    }

    /**
     * Getter method for property operator.
     * @return property value of operator
     * @author hewei
     */
    @Override
    public String getOperator() {
        return operator;
    }

    /**
     * Setter method for property operator.
     * @param operator value to be assigned to property operator
     * @author hewei
     */
    @Override
    public void setOperator(String operator) {
        this.operator = operator;
    }

    /**
     * Getter method for property value.
     * @return property value of value
     * @author hewei
     */
    @Override
    public Object getValue() {
        return value;
    }

    /**
     * Setter method for property value.
     * @param value value to be assigned to property value
     * @author hewei
     */
    @Override
    public void setValue(Object value) {
        this.value = value;
    }

    /**
     * Getter method for property data.
     * @return property value of data
     * @author hewei
     */
    @Override
    public Object getData() {
        return data;
    }

    /**
     * Setter method for property data.
     * @param data value to be assigned to property data
     * @author hewei
     */
    @Override
    public void setData(Object data) {
        this.data = data;
    }

    /**
     * Getter method for property condition.
     * @return property value of condition
     * @author hewei
     */
    @Override
    public String getCondition() {
        return condition;
    }

    /**
     * Setter method for property condition.
     * @param condition value to be assigned to property condition
     * @author hewei
     */
    @Override
    public void setCondition(String condition) {
        this.condition = condition;
    }

    /**
     * Getter method for property not.
     * @return property value of not
     * @author hewei
     */
    @Override
    public Boolean getNot() {
        return not;
    }

    /**
     * Setter method for property not.
     * @param not value to be assigned to property not
     * @author hewei
     */
    @Override
    public void setNot(Boolean not) {
        this.not = not;
    }

    /**
     * Getter method for property rules.
     * @return property value of rules
     * @author hewei
     */
    @Override
    public List getRules() {
        return rules;
    }

    /**
     * Setter method for property rules.
     * @param rules value to be assigned to property rules
     * @author hewei
     */
    @Override
    public void setRules(List rules) {
        this.rules = rules;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy