VOOZH about

URL: https://www.javacodegeeks.com/author/peter-verhas/page/3

⇱ Peter Verhas, Author at Java Code Geeks - Page 3 of 12


  • Core Java👁 Image
    Peter VerhasAugust 14th, 2019
    0 193

    Annotation Handling and JPMS

    TLDR; Instead of annotation.getClass().getMethod("value") call annotation.annotationType().getMethod("value"). All Java developers have heard about annotations. Annotations are with us since Java 1.5…

    Read More »
  • Core Java👁 Image
    Peter VerhasJuly 13th, 2019
    0 261

    Java hexadecimal floating point literal

    How I met hexadecimal floating point numbers I was developing a new functionality into Java::Geci to make it less prone…

    Read More »
  • Core Java👁 Image
    Peter VerhasJuly 2nd, 2019
    0 171

    Inject-able only in test?

    This article is about some thoughts of test design and testability. Some questions that we discussed with my son, who…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Peter VerhasJune 22nd, 2019
    0 737

    Converting objects to Map and back

    In large enterprise applications sometimes we need to convert data objects to and from Map. Usually, it is an intermediate…

    Read More »
  • Core Java👁 Image
    Peter VerhasJune 14th, 2019
    0 199

    Extending abstract classes with abstract classes in Java

    The example issue When I was creating the Java::Geci abstract class AbstractFieldsGenerator and AbstractFilteredFieldsGenerator I faced a not too complex…

    Read More »
  • Core Java👁 Image
    Peter VerhasJune 7th, 2019
    1 148

    Reflection selector expression

    Java::Geci is a code generator that runs during unit test time. If the generated code fits the actual version of…

    Read More »
  • Core Java👁 Image
    Peter VerhasJune 2nd, 2019
    2 344

    Generating setters and getters using Java::Geci

    In the article , we created very simple hello-world generators to introduce the framework and how to generate generators generally.…

    Read More »
  • Core Java👁 Image
    Peter VerhasMay 24th, 2019
    0 160

    Box old objects to be autoclosable

    Since Java 7 we can use try-with-resources and have any object automatically closed that implements the Autocloseable interface. If the…

    Read More »
  • Core Java👁 Image
    Peter VerhasMay 18th, 2019
    0 157

    Lazy assignment in Java

    Programmers are inherently lazy and similis simili gaudet also like when the programs are lazy. Have you ever heard lazy…

    Read More »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • 10
  • ...
  • Last
Back to top button
Close