1 /*
2  * Copyright (C) 2017 Google Inc. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.example.android.wearable.wear.wearaccessibilityapp;
17 
18 public class SampleAppConstants {
19     /** {@value #NORMAL} Used when sending information to an Adapter class */
20     public static final int NORMAL = 1;
21 
22     /** {@value #HEADER_FOOTER} Used when sending information to an Adapter class */
23     public static final int HEADER_FOOTER = 2;
24 
25     /** {@value #PROGRESS_BAR} Used when sending information to an Adapter class */
26     public static final int PROGRESS_BAR = 3;
27 
28     /** {@value #SWITCH} Used when sending information to an Adapter class */
29     public static final int SWITCH = 4;
30 
31     /** {@value #TITLE} Used when sending information to an Adapter class */
32     public static final int TITLE = 5;
33 
34     /**
35      * {@value #END_OF_LONG_LIST} Used to check if at the end of long list Used in
36      * LongListRecyclerviewAdapter
37      */
38     public static final int END_OF_LONG_LIST = 45;
39 }
40