public class FeatureTest
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
int |
z |
| Constructor and Description |
|---|
FeatureTest()
empty ctor
|
FeatureTest(int x,
int y)
ctor with params
|
| Modifier and Type | Method and Description |
|---|---|
int |
getX()
getter for x
|
int |
getY()
getter for y
|
void |
listInput(java.util.List<java.lang.Object> list)
method to take in a list
|
static boolean |
overloadedStatic()
static method that returns true
|
static boolean |
overloadedStatic(boolean whatToReturn)
static method that returns what you ask it
|
void |
setX(int x)
setter for x
|
void |
setY(int y)
setter for y
|
static float |
staticAddFloatsTest(float x,
float y)
static method only whitelisted as a static
|
java.lang.Object |
twoFunctionsOfX(java.util.function.Function<java.lang.Object,java.lang.Object> f,
java.util.function.Function<java.lang.Object,java.lang.Object> g)
method taking two functions!
|
public FeatureTest()
public FeatureTest(int x,
int y)
public static boolean overloadedStatic()
public static boolean overloadedStatic(boolean whatToReturn)
public static float staticAddFloatsTest(float x,
float y)
public int getX()
public void setX(int x)
public int getY()
public void setY(int y)
public java.lang.Object twoFunctionsOfX(java.util.function.Function<java.lang.Object,java.lang.Object> f,
java.util.function.Function<java.lang.Object,java.lang.Object> g)
public void listInput(java.util.List<java.lang.Object> list)