Here you can find the source of isOva(final Path filePath)
public static boolean isOva(final Path filePath)
//package com.java2s; //License from project: Apache License import java.nio.file.FileSystems; import java.nio.file.Path; import java.nio.file.PathMatcher; public class Main { private static final PathMatcher ovaMatcher = FileSystems.getDefault().getPathMatcher("glob:**.ova"); public static boolean isOva(final Path filePath) { return ovaMatcher.matches(filePath); }// w w w .j ava2s .co m }