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

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

/*
 * Copyright (C) 2014 Information Management Services, Inc.
 */
package com.imsweb.decisionengine;

/**
 * Represents a key-value pair
 */
public interface KeyValue {

    /**
     * Return the key
     * @return a String key
     */
    String getKey();

    /**
     * Return the value
     * @return a String value
     */
    String getValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy