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

eu.clarussecure.dataoperations.encryption.operators.Identity Maven / Gradle / Ivy

The newest version!
package eu.clarussecure.dataoperations.encryption.operators;

public class Identity extends Select {

    @Override
    public boolean select(String data) {
        // The identity function selects any given data
        // Since this is the identity function, it always returns true
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy