summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/FileType.java
blob: 2d2f3e78c7d971138dcc064ff387fe6ac6995f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.smartdevicelink.proxy.rpc.enums;

/**
 * Enumeration listing possible file tpyes.
 * @since SmartDeviceLink 2.0
 */
public enum FileType {
	/**
	 * BMP
	 */
    GRAPHIC_BMP,
    /**
     * JPEG
     */
    GRAPHIC_JPEG,
    /**
     * PNG
     */
    GRAPHIC_PNG,
    /**
     * WAVE
     */
    AUDIO_WAVE,
    /**
     * MP3
     */
    AUDIO_MP3;

    /**
     * Convert String to FileType
     * @param value String
     * @return FileType
     */      
    public static FileType valueForString(String value) {
        return valueOf(value);
    }
}