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

ru.mk.pump.web.interpretator.rules.Rule Maven / Gradle / Ivy

package ru.mk.pump.web.interpretator.rules;

import javax.annotation.Nullable;

@SuppressWarnings("unused")
public interface Rule {

    boolean parseStart(String left, String right);

    boolean parseEnd(String left, String right);

    int minSize();

    String[] getEscapes();

    @Nullable
    T toValue(String string);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy