001package io.avaje.jsonb.core; 002 003import io.avaje.jsonb.Jsonb; 004 005/** 006 * Default bootstrap of Jsonb. 007 */ 008public class DefaultBootstrap { 009 010 /** 011 * Create the Jsonb.Builder. 012 */ 013 public static Jsonb.Builder builder() { 014 return new DJsonb.DBuilder(); 015 } 016}