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

io.github.laskowski.shell.output.messages.MessageEquals Maven / Gradle / Ivy

Go to download

Library to launch .bat and .sh scripts of your choice with different configurations. Allows you to read tasks and services output from terminal

There is a newer version: 2.0.6.1
Show newest version
package io.github.laskowski.shell.output.messages;

import java.util.function.Predicate;

public class MessageEquals extends MessageAction {

    public MessageEquals(String expected) {
        super(expected);
    }

    @Override
    public Predicate getPredicate() {
        return message -> message.equals(expected);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy