Files
codeql/java/ql/test/stubs/retrofit-2.9.0/kotlin/ranges/IntRange.java
2022-05-02 15:42:15 +02:00

27 lines
905 B
Java
Generated

// Generated automatically from kotlin.ranges.IntRange for testing purposes
package kotlin.ranges;
import kotlin.ranges.ClosedRange;
import kotlin.ranges.IntProgression;
public class IntRange extends IntProgression implements ClosedRange<Integer>
{
protected IntRange() {}
public IntRange(int p0, int p1){}
public Integer getEndInclusive(){ return null; }
public Integer getStart(){ return null; }
public String toString(){ return null; }
public boolean contains(int p0){ return false; }
public boolean equals(Object p0){ return false; }
public boolean isEmpty(){ return false; }
public int hashCode(){ return 0; }
public static IntRange.Companion Companion = null;
static public class Companion
{
protected Companion() {}
public final IntRange getEMPTY(){ return null; }
}
public boolean contains(Integer p0) { return false; }
}