Skip to content

Instantly share code, notes, and snippets.

View spacether's full-sized avatar

Justin Black spacether

View GitHub Profile
@spacether
spacether / RootClass.java
Last active December 5, 2023 05:43
Java classes that allow type safe extraction of a value that is String or Number
package org.openapijsonschematools.client.schemas;
public class RootClass {
public static abstract class StringNumberType {
}
public static final class StringType extends StringNumberType {