with inline keyboard you can't
but with reply keyboard you can do the following :
`KeyboardRow row = new KeyboardRow();
KeyboardButtonRequestUser requestUser = KeyboardButtonRequestUser.builder() .userIsBot(false) .requestId("123456") //some unique request id .build();
row.add(KeyboardButton.builder().text("CHOOSE USER").requestUser(requestUser).build());`