INNER CODE UNIT · Java
getLayout
UnevenSoftware/LeafPic · app/src/main/java/org/horaapps/leafpic/CardViewStyle.java:23
public int getLayout() {
return layout;
}
public int getValue() { return value; }
public static int getSize() {
return size;
}
public static CardViewStyle fromValue(int value){
switch (value){
case 0: default: return MATERIAL;
case 1: return FLAT;
case 2: return COMPACT;
}
}
}