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

de.aliceice.humanoid.media.Media Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package de.aliceice.humanoid.media;

import de.aliceice.humanoid.Response;
import java.util.Collection;

public interface Media {
    
    void print(String name, String value);
    
    void print(String name, Response response);
    
    void print(String name, Collection collection);
    
    T getContent();
    
    default void print(String name, Integer value) {
        print(name, value.toString());
    }
    
    default void print(String name, Float value) {
        print(name, value.toString());
    }
    
    default void print(String name, Double value) {
        print(name, value.toString());
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy