Example usage for java.util EnumMap subclass-usage

List of usage examples for java.util EnumMap subclass-usage

Introduction

In this page you can find the example usage for java.util EnumMap subclass-usage.

Usage

From source file rest.bef.ACRACrashReportData.java

/**
 *
 * This is basically the source of {@link Properties} adapted to extend an
 * EnumMap instead of Hashtable and with a few tweaks to avoid losing crazy
 * amounts of android time in the generation of a date comment when storing to file.
 */

From source file kidozen.client.crash.CrashReportData.java

/**
 * Stores a crash reports data with {@link org.acra.ReportField} enum values as keys.
 * This is basically the source of {@link Properties} adapted to extend an
 * EnumMap instead of Hashtable and with a few tweaks to avoid losing crazy
 * amounts of android time in the generation of a date comment when storing to
 * file.

From source file org.acra.collector.CrashReportData.java

/**
 * Stores a crash reports data with {@link org.acra.ReportField} enum values as keys.
 * This is basically the source of {@link Properties} adapted to extend an
 * EnumMap instead of Hashtable and with a few tweaks to avoid losing crazy
 * amounts of android time in the generation of a date comment when storing to
 * file.

From source file de.upb.wdqa.wdvd.processors.statistics.CorpusStatisticsProcessor.java

class ContentTypeFrequency extends EnumMap<CONTENT_TYPE, Integer> {
    private static final long serialVersionUID = 1L;

    ContentTypeFrequency() {
        super(CONTENT_TYPE.class);