Module com.speedment.common.codegen
Interface InterfaceMethodModifier<T extends InterfaceMethodModifier<T>>
-
- Type Parameters:
T- the extending type
- All Superinterfaces:
HasModifiers<T>
- All Known Subinterfaces:
InterfaceMethod
public interface InterfaceMethodModifier<T extends InterfaceMethodModifier<T>>Composed trait of all themodifiersthat can be added to anInterfaceMethod.- Since:
- 2.0
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Tdefault_()Adds thedefaultkeyword to this model.default TnotDefault()Removes thedefaultkeyword from this model.default TnotStatic()Removes thestatickeyword from this model.default Tstatic_()Adds thestatickeyword to this model.-
Methods inherited from interface com.speedment.common.codegen.model.trait.HasModifiers
getModifiers
-
-
-
-
Method Detail
-
static_
default T static_()
Adds thestatickeyword to this model.- Returns:
- a reference to this model
-
notStatic
default T notStatic()
Removes thestatickeyword from this model.- Returns:
- a reference to this model
-
default_
default T default_()
Adds thedefaultkeyword to this model.- Returns:
- a reference to this model
-
notDefault
default T notDefault()
Removes thedefaultkeyword from this model.- Returns:
- a reference to this model
-
-