blob: 3b960b8636a9815ef0d1baea2f310b9a0672c965 [file] [log] [blame]
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.jetbrains.jsonProtocol;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Describes a method that corresponds to a type field (i.e. a property of JSON object).
* Its use is optional, because all methods by default are recognized as field-reading methods.
* Should be used to specify JSON property name.
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface JsonField {
/**
* Specifies JSON property name, which otherwise is derived from the method name (optional "get"
* prefix is truncated with the first letter decapitalization).
*/
String jsonLiteralName() default "";
// read any primitive value as String (true as true, number as string - don't try to parse)
boolean allowAnyPrimitiveValue() default false;
boolean allowAnyPrimitiveValueAndMap() default false;
boolean optional() default false;
}