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

com.itfsw.query.builder.support.model.IRule 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;

/**
 * ---------------------------------------------------------------------------
 *
 * ---------------------------------------------------------------------------
 * @author: hewei
 * @time:2017/10/31 13:10
 * ---------------------------------------------------------------------------
 */
public interface IRule {
    /**
     * Getter method for property id.
     * @return property value of id
     * @author hewei
     */
    String getId();

    /**
     * Setter method for property id.
     * @param id value to be assigned to property id
     * @author hewei
     */
    void setId(String id);

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

    /**
     * Setter method for property field.
     * @param field value to be assigned to property field
     * @author hewei
     */
    void setField(String field);

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

    /**
     * Setter method for property type.
     * @param type value to be assigned to property type
     * @author hewei
     */
    void setType(String type);

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

    /**
     * Setter method for property input.
     * @param input value to be assigned to property input
     * @author hewei
     */
    void setInput(String input);

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

    /**
     * Setter method for property operator.
     * @param operator value to be assigned to property operator
     * @author hewei
     */
    void setOperator(String operator);

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

    /**
     * Setter method for property value.
     * @param value value to be assigned to property value
     * @author hewei
     */
    void setValue(Object value);

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy