Attach @Beta annotation to ResourcePath sub-classes
Change-Id: I06c4d9f44e3facefd11f80b2dfb39b89c2c4423b
Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -199,6 +199,7 @@ public abstract class ResourcePath { | ... | @@ -199,6 +199,7 @@ public abstract class ResourcePath { |
| 199 | * implementation only. It is not for resource API user. | 199 | * implementation only. It is not for resource API user. |
| 200 | * </p> | 200 | * </p> |
| 201 | */ | 201 | */ |
| 202 | + @Beta | ||
| 202 | public static final class Discrete extends ResourcePath { | 203 | public static final class Discrete extends ResourcePath { |
| 203 | private Discrete() { | 204 | private Discrete() { |
| 204 | super(); | 205 | super(); |
| ... | @@ -220,6 +221,7 @@ public abstract class ResourcePath { | ... | @@ -220,6 +221,7 @@ public abstract class ResourcePath { |
| 220 | * Note: This class is exposed to the public, but intended to be used in the resource API | 221 | * Note: This class is exposed to the public, but intended to be used in the resource API |
| 221 | * implementation only. It is not for resource API user. | 222 | * implementation only. It is not for resource API user. |
| 222 | */ | 223 | */ |
| 224 | + @Beta | ||
| 223 | public static final class Continuous extends ResourcePath { | 225 | public static final class Continuous extends ResourcePath { |
| 224 | // Note: value is not taken into account for equality | 226 | // Note: value is not taken into account for equality |
| 225 | private final double value; | 227 | private final double value; | ... | ... |
-
Please register or login to post a comment