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

eu.stamp_project.utils.Utils Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package eu.stamp_project.utils;

public class Utils {

    public static boolean hasFlag(int value, int flag) {
        return (value & flag) != 0;
    }

    public static boolean isConstructor(String name) {  return name.equals(""); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy