
io.crossbar.autobahn.wamp.reflectionRoles.ParameterInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autobahn-java Show documentation
Show all versions of autobahn-java Show documentation
WebSocket & WAMP for Java8+
The newest version!
package io.crossbar.autobahn.wamp.reflectionRoles;
public class ParameterInfo{
private final int mPosition;
private final String mName;
private final Class> mType;
public ParameterInfo(int position, String name, Class> type) {
this.mPosition = position;
this.mName = name;
this.mType = type;
}
public int getPosition() {
return mPosition;
}
public String getName() {
return mName;
}
public Class> getType() {
return mType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy