View Javadoc
1   package com.srv4pos.server.api.keyboard;
2   
3   /**
4    * Determines the size of the device.
5    * Amount of inches may change in future.
6    *
7    * <p>User: Sergey, Date: 30.03.14 21:09</p>.
8    */
9   public enum DeviceFormFactor {
10      /**
11       * The mobile phone. Displays with size less or equal 7".
12       */
13      PHONE,
14      /**
15       * The tablet with small display. Displays bigger than 7" and less or equal 10".
16       */
17      TABLET_SMALL,
18      /**
19       * The tablet with big display. Displays bigger than 10".
20       */
21      TABLET_BIG
22  }