Last active
July 20, 2019 22:36
-
-
Save dalelane/a6bacee633593a6696fa87af2c78ec0d to your computer and use it in GitHub Desktop.
Sample code used in https://dalelane.co.uk/blog/?p=3781
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Type2 myThing = new Type2(); | |
| myThing.setMyString("Hello"); | |
| myThing.setMyBoolean(false); | |
| myThing.setMyDouble(12.2); | |
| myThing.setMyFloat(1.34f); | |
| myThing.setMyInt(123); | |
| myThing.setMyLong(123124l); | |
| myThing.setMyBytes(ByteBuffer.allocate(0)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment