Example

public GetDeclaredMethod_Exemplo() {
super();
}

public void setValue( int value ) {
this .value = value;
}

public int getValue() {
return value;
}

private int value;

public static void main(String[] args){
try {
Method method = GetDeclaredMethod_Exemplo.class.getDeclaredMethod( "getValue", new Class[] { Void.class } ); //$NON-NLS-1$
GetDeclaredMethod_Exemplo obj = new GetDeclaredMethod_Exemplo();
method.invoke( obj, new Object[] { new Integer( 1 ) } );
System.out.println( obj.getValue() );
} catch (IllegalAccessException e) {
System.out.println( "Não é possível acessar o método privado 'getValue'" ); //$NON-NLS-1$
} catch (InvocationTargetException e) {
System.out.println( "Problema ao chamar o método" ); //$NON-NLS-1$
} catch (NoSuchMethodException e) {
System.out.println( "Nenhum método getValue" ); //$NON-NLS-1$
}

}

Solução
Utilize a chamada de método direto em vez de getDeclaredMethod() com o nome do método codificado permanentemente.

public GetDeclaredMethod_Solution() {
super();
}

public void setValue( int value ) {
this .value = value;
}

public int getValue() {
return value;
}

private int value;

public static void main(String[] args) {
GetDeclaredMethod_Exemplo obj = new GetDeclaredMethod_Exemplo();
obj.setValue( 1 );
System.out.println( obj.getValue() );
}