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

com.imsweb.decisionengine.ColumnDefinition Maven / Gradle / Ivy

There is a newer version: 11.3.0
Show newest version
/*
 * Copyright (C) 2014 Information Management Services, Inc.
 */
package com.imsweb.decisionengine;

/**
 * Defines a column in a Table
 */
public interface ColumnDefinition {

    /**
     * The key representing the field name
     * @return a String name
     */
    String getKey();

    /**
     * The type of column
     * @return a ColumnType representing the type
     */
    ColumnType getType();

    enum ColumnType {
        INPUT,
        DESCRIPTION,
        ENDPOINT
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy