Here you can find the source of sizeOf(int fieldNumber)
static int sizeOf(int fieldNumber)
//package com.java2s; //Licensed under the Apache License, Version 2.0 (the "License"); public class Main { static int sizeOf(int fieldNumber) { return fieldNumber > 15 ? 2 : 1; }//ww w . j a va2 s .co m }