Modifiers are flags that are set on different attributes, objects etc. within a program to control certain things like access and other functionality. There are two types of modifiers; Access – modifiers are used to set the access level for classes, attributes, methods and constructors. What that means is it will set who/what and how… Continue reading Modifiers, who, what, why, when?
Category: java
Simple model management and generation in Java
In Java managing models and their generational usages can be a bit cumbersome when you are developing code or a system that has a lot of transitional states i.e. REST call to a API to retrieve some data to manipulate, polling from a topic to process a state change or something along the lines of… Continue reading Simple model management and generation in Java