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

com.vladsch.flexmark.util.format.NumericSuffixPredicate Maven / Gradle / Ivy

The newest version!
package com.vladsch.flexmark.util.format;

import java.util.function.Predicate;
import org.jetbrains.annotations.NotNull;

public interface NumericSuffixPredicate extends Predicate {
  default boolean sortSuffix(@NotNull String suffix) {
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy