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

com.epam.jdi.light.elements.complex.IHasSize Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.epam.jdi.light.elements.complex;

/**
 * Created by Roman Iovlev on 26.09.2019
 * Email: [email protected]; Skype: roman.iovlev
 */
public interface IHasSize {
    int size();
    default boolean isEmpty() { return size() == 0; }
    default boolean isNotEmpty() { return size() > 0; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy