Which of the following methods can be added to this class?

public class X
{
    void method(String text)        {}
    void method(String text, int i) {}
    void method(Object o)           {}
    void method(float f, double d)  {}

    //add method here...
}

A) void method(final String[] text)
B) void method(double d, float f)
C) void Method(Object o) {}
D) void method(final String i, final int text)