// 
// Decompiled by Procyon v0.6.0
// 

package com.google.gson;

import java.util.Collections;
import java.util.List;
import java.lang.reflect.Field;

public interface FieldNamingStrategy
{
    String translateName(final Field p0);
    
    default List<String> alternateNames(final Field f) {
        return Collections.emptyList();
    }
}
