Module com.speedment.common.codegen
Interface ClassModifier<T extends ClassModifier<T>>
-
- Type Parameters:
T- the extending type
- All Superinterfaces:
HasModifiers<T>
- All Known Subinterfaces:
Class
public interface ClassModifier<T extends ClassModifier<T>>- Since:
- 2.0
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Tabstract_()Adds theabstractkeyword to this model.default Tfinal_()Adds thefinalkeyword to this model.default TnotAbstract()Removes theabstractkeyword from this model.default TnotFinal()Removes thefinalkeyword from this model.default TnotPrivate()Removes theprivatekeyword from this model.default TnotProtected()Removes theprotectedkeyword from this model.default TnotPublic()Removes thepublickeyword from this model.default TnotStatic()Removes thestatickeyword from this model.default TnotStrictfp()Removes thestrictfpkeyword from this model.default Tprivate_()Adds theprivatekeyword to this model.default Tprotected_()Adds theprotectedkeyword to this model.default Tpublic_()Adds thepublickeyword to this model.default Tstatic_()Adds thestatickeyword to this model.default Tstrictfp_()Adds thestrictfpkeyword to this model.-
Methods inherited from interface com.speedment.common.codegen.model.trait.HasModifiers
getModifiers
-
-
-
-
Method Detail
-
public_
default T public_()
Adds thepublickeyword to this model.- Returns:
- a reference to this model
-
notPublic
default T notPublic()
Removes thepublickeyword from this model.- Returns:
- a reference to this model
-
protected_
default T protected_()
Adds theprotectedkeyword to this model.- Returns:
- a reference to this model
-
notProtected
default T notProtected()
Removes theprotectedkeyword from this model.- Returns:
- a reference to this model
-
private_
default T private_()
Adds theprivatekeyword to this model.- Returns:
- a reference to this model
-
notPrivate
default T notPrivate()
Removes theprivatekeyword from this model.- Returns:
- a reference to this model
-
abstract_
default T abstract_()
Adds theabstractkeyword to this model.- Returns:
- a reference to this model
-
notAbstract
default T notAbstract()
Removes theabstractkeyword from this model.- Returns:
- a reference to this model
-
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
-
final_
default T final_()
Adds thefinalkeyword to this model.- Returns:
- a reference to this model
-
notFinal
default T notFinal()
Removes thefinalkeyword from this model.- Returns:
- a reference to this model
-
strictfp_
default T strictfp_()
Adds thestrictfpkeyword to this model.- Returns:
- a reference to this model
-
notStrictfp
default T notStrictfp()
Removes thestrictfpkeyword from this model.- Returns:
- a reference to this model
-
-