// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.fasterxml.jackson.databind.jsonFormatVisitors; public final class JsonValueFormat extends Enum { private static final JsonValueFormat $VALUES[]; public static final JsonValueFormat COLOR; public static final JsonValueFormat DATE; public static final JsonValueFormat DATE_TIME; public static final JsonValueFormat EMAIL; public static final JsonValueFormat HOST_NAME; public static final JsonValueFormat IPV6; public static final JsonValueFormat IP_ADDRESS; public static final JsonValueFormat PHONE; public static final JsonValueFormat REGEX; public static final JsonValueFormat STYLE; public static final JsonValueFormat TIME; public static final JsonValueFormat URI; public static final JsonValueFormat UTC_MILLISEC; private final String _desc; private JsonValueFormat(String s, int i, String s1) { super(s, i); _desc = s1; } public static JsonValueFormat valueOf(String s) { return (JsonValueFormat)Enum.valueOf(com/fasterxml/jackson/databind/jsonFormatVisitors/JsonValueFormat, s); } public static JsonValueFormat[] values() { return (JsonValueFormat[])$VALUES.clone(); } public String toString() { return _desc; } static { DATE_TIME = new JsonValueFormat("DATE_TIME", 0, "date-time"); DATE = new JsonValueFormat("DATE", 1, "date"); TIME = new JsonValueFormat("TIME", 2, "time"); UTC_MILLISEC = new JsonValueFormat("UTC_MILLISEC", 3, "utc-millisec"); REGEX = new JsonValueFormat("REGEX", 4, "regex"); COLOR = new JsonValueFormat("COLOR", 5, "color"); STYLE = new JsonValueFormat("STYLE", 6, "style"); PHONE = new JsonValueFormat("PHONE", 7, "phone"); URI = new JsonValueFormat("URI", 8, "uri"); EMAIL = new JsonValueFormat("EMAIL", 9, "email"); IP_ADDRESS = new JsonValueFormat("IP_ADDRESS", 10, "ip-address"); IPV6 = new JsonValueFormat("IPV6", 11, "ipv6"); HOST_NAME = new JsonValueFormat("HOST_NAME", 12, "host-name"); $VALUES = (new JsonValueFormat[] { DATE_TIME, DATE, TIME, UTC_MILLISEC, REGEX, COLOR, STYLE, PHONE, URI, EMAIL, IP_ADDRESS, IPV6, HOST_NAME }); } }