Package com.splunk

Examples of com.splunk.InputKind


import java.beans.PropertyEditorSupport;

public class InputKindPropertyEditor extends PropertyEditorSupport {
    @Override public String getAsText() {
        InputKind value = (InputKind)getValue();
        return value.toString();
    }
View Full Code Here


    @Override protected PropertyList getMetadata() {
        PropertyList list = super.getMetadata();
        list.add(InputKind.class, "getKind");
        Input input = (Input)value;
        InputKind kind = input.getKind();
        if (kind == InputKind.Monitor) {
            list.add(int.class, "getFileCount");
            list.add(String.class, "getHost");
            list.add(String.class, "getIndex");
            list.add(int.class, "getRcvBuf");
View Full Code Here

TOP

Related Classes of com.splunk.InputKind

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.