io.tracee.EmptyEnumeration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracee-testhelper Show documentation
Show all versions of tracee-testhelper Show documentation
Please refer to https://github.com/tracee/tracee.
package io.tracee;
import java.util.Enumeration;
public final class EmptyEnumeration implements Enumeration {
public static EmptyEnumeration emptyEnumeration() {
return new EmptyEnumeration();
}
@Override
public boolean hasMoreElements() {
return false;
}
@Override
public T nextElement() {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy