X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=android%2Fandroid_api%2Fbase%2Fsrc%2Fmain%2Fjava%2Forg%2Fiotivity%2Fbase%2FObserveAction.java;h=085ddf33d8a3bd154d25a181f726257703a9773f;hb=refs%2Ftags%2Fupstream%2F1.0.0;hp=3e7c5ece43592d98b66b26d5595fdb100f6304dc;hpb=8c01dff2c5bc5496f7dc1632c498943ec6ecb015;p=platform%2Fupstream%2Fiotivity.git diff --git a/android/android_api/base/src/main/java/org/iotivity/base/ObserveAction.java b/android/android_api/base/src/main/java/org/iotivity/base/ObserveAction.java index 3e7c5ec..085ddf3 100644 --- a/android/android_api/base/src/main/java/org/iotivity/base/ObserveAction.java +++ b/android/android_api/base/src/main/java/org/iotivity/base/ObserveAction.java @@ -1,47 +1,47 @@ -/* - * //****************************************************************** - * // - * // Copyright 2015 Intel Corporation. - * // - * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= - * // - * // 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 org.iotivity.base; - -public enum ObserveAction { - REGISTER(0), - UNREGISTER(1),; - - private int value; - - private ObserveAction(int value) { - this.value = value; - } - - public int getValue() { - return this.value; - } - - public static ObserveAction get(int val) { - for (ObserveAction observeAction : ObserveAction.values()) { - if (observeAction.getValue() == val) - return observeAction; - } - - throw new IllegalArgumentException("Unexpected ObserveAction value"); - } -} +/* + * //****************************************************************** + * // + * // Copyright 2015 Intel Corporation. + * // + * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + * // + * // 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 org.iotivity.base; + +public enum ObserveAction { + REGISTER(0), + UNREGISTER(1),; + + private int value; + + private ObserveAction(int value) { + this.value = value; + } + + public int getValue() { + return this.value; + } + + public static ObserveAction get(int val) { + for (ObserveAction observeAction : ObserveAction.values()) { + if (observeAction.getValue() == val) + return observeAction; + } + + throw new IllegalArgumentException("Unexpected ObserveAction value"); + } +}