# Enum: com.pnfsoftware.jeb.util.base.FileType

Simple file type determination routine primarily based on path extension, and optionally, file contents.

## Constant: AUDIO

## Constant: HTML

## Constant: IMAGE

## Constant: TEXT

## Constant: UNKNOWN

## Constant: VIDEO

## Constant: XML

## Static Method: determine
- parameter: `path`, type: `java.lang.String`
- return type: `com.pnfsoftware.jeb.util.base.FileType`

Description: Determine the high\-level file type. The file extension is used first; if the type cannot be determined from extension, the file contents may be examined.
parameter: path: path to a file
return: file type, never null

## Static Method: valueOf
- parameter: `name`, type: `java.lang.String`
- return type: `com.pnfsoftware.jeb.util.base.FileType`


## Static Method: values
- return type: `com.pnfsoftware.jeb.util.base.FileType[]`


