aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/common/options/UsesOnlyCoreTypes.java
blob: c40495d17b2218cc1444f5ecd60953cb0e893b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2017 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.devtools.common.options;

import com.google.common.collect.ImmutableList;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.time.Duration;
import java.util.List;

/**
 * Applied to an {@link OptionsBase} subclass to indicate that all of its options fields have types
 * chosen from {@link #coreTypes}. Any subclasses of the class to which it's applied must also
 * satisfy the same property.
 *
 * <p>Options classes with this annotation are serializable and deeply immutable, except that the
 * fields of the options class can be reassigned (although this is bad practice).
 *
 * <p>Note that {@link Option#allowMultiple} is not allowed for options in classes with this
 * annotation, since their type is {@link List}.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface UsesOnlyCoreTypes {

  /**
   * These are the core options field types. They all have default converters, are deeply immutable,
   * and are serializable.
   *
   * Lists are not considered core types, so {@link Option#allowMultiple} options are not permitted.
   */
  public static final ImmutableList<Class<?>> CORE_TYPES = ImmutableList.of(
      // 1:1 correspondence with Converters.DEFAULT_CONVERTERS.
      String.class,
      int.class,
      long.class,
      double.class,
      boolean.class,
      TriState.class,
      Void.class,
      Duration.class
  );
}