/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.dynamicjsonparser.pojo;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class Indexe {
|
private int position;
|
|
private String fullQualifiedNameOfField;
|
|
public Indexe(int position) {
|
this.position = position;
|
}
|
|
public Indexe(int position, String fullQualifiedNameOfField) {
|
this.position = position;
|
this.fullQualifiedNameOfField = fullQualifiedNameOfField;
|
}
|
|
public Indexe(String fullQualifiedNameOfField) {
|
this.fullQualifiedNameOfField = fullQualifiedNameOfField;
|
}
|
|
public int getPosition() {
|
return position;
|
}
|
|
public void setPosition(int position) {
|
this.position = position;
|
}
|
|
public String getFullQualifiedNameOfField() {
|
return fullQualifiedNameOfField;
|
}
|
|
public void setFullQualifiedNameOfField(String fullQualifiedNameOfField) {
|
this.fullQualifiedNameOfField = fullQualifiedNameOfField;
|
}
|
|
|
}
|